Microsoft SDK for Java

FocusEvent Class

The FocusEvent Class of the com.ms.awt package manages component-level focus events. This class is similar to the java.awt.event.FocusEvent class, except that it also incorporates the target component of a component focus event.

public class FocusEvent extends java.awt.event.FocusEvent
{
  // Constructors
  public FocusEvent(Component source, int id, Component other,
        boolean temporary);
  public FocusEvent(Component source, int id, Component other);

  // Methods
  public Component getOtherComponent();
  public String paramString();
}

Hierarchy

FocusEvent
  |
  +--FocusEvent

© 1999 Microsoft Corporation. All rights reserved. Terms of use.