All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.Component Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 217: Personal Basis Profile 1.1. In the event of a discrepency between this work and the JSR 217 specification, which is available at http://www.jcp.org/en/jsr/detail?id=217, the latter takes precedence. */ package java.awt; import java.awt.event.*; // import javax.accessibility.*; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Vector; import java.util.Locale; import java.util.EventListener; import java.util.Iterator; import java.util.HashSet; import java.util.Set; import java.util.Collections; // import java.awt.peer.ComponentPeer; // import java.awt.peer.ContainerPeer; // import java.awt.peer.LightweightPeer; // import java.awt.image.BufferStrategy; import java.awt.image.ImageObserver; import java.awt.image.ImageProducer; import java.awt.image.ColorModel; import java.awt.image.VolatileImage; // import java.awt.datatransfer.Transferable; // import java.awt.dnd.DnDConstants; // import java.awt.dnd.DragSource; // import java.awt.dnd.DragSourceContext; // import java.awt.dnd.DragSourceListener; // import java.awt.dnd.InvalidDnDOperationException; import java.io.Serializable; import java.io.ObjectOutputStream; import java.io.ObjectInputStream; import java.io.IOException; import java.beans.PropertyChangeListener; import java.awt.event.InputMethodListener; import java.awt.event.InputMethodEvent; import java.awt.im.InputContext; import java.awt.im.InputMethodRequests; // import java.awt.dnd.DropTarget; import java.awt.GraphicsConfiguration; /** * A component is an object having a graphical representation * that can be displayed on the screen and that can interact with the * user. Examples of components are the buttons, checkboxes, and scrollbars * of a typical graphical user interface.

* The Component class is the abstract superclass of * the nonmenu-related Abstract Window Toolkit components. Class * Component can also be extended directly to create a * lightweight component. A lightweight component is a component that is * not associated with a native opaque window. *

*

Serialization

* It is important to note that only AWT listeners which conform * to the Serializable protocol will be saved when * the object is stored. If an AWT object has listeners that * aren't marked serializable, they will be dropped at * writeObject time. Developers will need, as always, * to consider the implications of making an object serializable. * One situation to watch out for is this: * * * *

Note: The following code examples include classes that do not * appear in this specification. Their inclusion is purely to serve as * a demonstration. * *

 import java.awt.*; import java.awt.event.*;
 * import java.io.Serializable;
 *    
 *    class MyApp implements ActionListener, Serializable
 *    {
 *        BigObjectThatShouldNotBeSerializedWithAButton bigOne;
 *        Button aButton = new Button();
 *      
 *        MyApp()
 *        {
 *            // Oops, now aButton has a listener with a reference
 *            // to bigOne!
 *            aButton.addActionListener(this);
 *        }
 *    
 *        public void actionPerformed(ActionEvent e)
 *        {
 *            System.out.println("Hello There");
 *        }
 *    }
 * 
* In this example, serializing aButton by itself * will cause MyApp and everything it refers to * to be serialized as well. The problem is that the listener * is serializable by coincidence, not by design. To separate * the decisions about MyApp and the * ActionListener being serializable one can use a * nested class, as in the following example: *
 *    import java.awt.*;
 *    import java.awt.event.*;
 *    import java.io.Serializable;
 *
 *    class MyApp java.io.Serializable
 *    {
 *         BigObjectThatShouldNotBeSerializedWithAButton bigOne;
 *         Button aButton = new Button();
 *
 *         class MyActionListener implements ActionListener
 *         {
 *             public void actionPerformed(ActionEvent e)
 *             {
 *                 System.out.println("Hello There");
 *             }
 *         }
 * 
 *         MyApp()
 *         {
 *             aButton.addActionListener(new MyActionListener());
 *         }
 *    }
 * 
*

* Note: For more information on the paint mechanisms utilitized * by AWT, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * *

* *

Clarifications

* *
    *
  • The cursor image of a Component is under the control * of the window management system. Method calls * to change the cursor are requests (not directives) which are * forwarded to the window management system for handling. * As a result, the window management system may ignore the cursor * as reported by {@link #getCursor}. See: *
      *
    • {@link #getCursor} *
    • {@link #setCursor} *
    *
* For more information, see
Profile-specific properties. * * * @version 1.357, 04/14/03 * @author Arthur van Hoff * @author Sami Shaio */ public abstract class Component implements ImageObserver, Serializable { /** * Ease-of-use constant for getAlignmentY(). * Specifies an alignment to the top of the component. * @see #getAlignmentY */ public static final float TOP_ALIGNMENT = 0.0f; /** * Ease-of-use constant for getAlignmentY and * getAlignmentX. Specifies an alignment to * the center of the component * @see #getAlignmentX * @see #getAlignmentY */ public static final float CENTER_ALIGNMENT = 0.5f; /** * Ease-of-use constant for getAlignmentY. * Specifies an alignment to the bottom of the component. * @see #getAlignmentY */ public static final float BOTTOM_ALIGNMENT = 1.0f; /** * Ease-of-use constant for getAlignmentX. * Specifies an alignment to the left side of the component. * @see #getAlignmentX */ public static final float LEFT_ALIGNMENT = 0.0f; /** * Ease-of-use constant for getAlignmentX. * Specifies an alignment to the right side of the component. * @see #getAlignmentX */ public static final float RIGHT_ALIGNMENT = 1.0f; /* * JDK 1.1 serialVersionUID */ private static final long serialVersionUID = -7644114512714619750L; /** * The x position of the component in the parent's coordinate system. * * @serial * @see #getLocation */ int x; /** * The y position of the component in the parent's coordinate system. * * @serial * @see #getLocation */ int y; /** * The width of the component. * * @serial * @see #getSize */ int width; /** * The height of the component. * * @serial * @see #getSize */ int height; /** * The foreground color for this component. * foreground can be null. * * @serial * @see #getForeground * @see #setForeground */ Color foreground; /** * The background color for this component. * background can be null. * * @serial * @see #getBackground * @see #setBackground */ Color background; /** * The font used by this component. * The font can be null. * * @serial * @see #getFont * @see #setFont */ Font font; // PBP/PP // 6203759: field should not be in the PBP spec /** * The font which the peer is currently using. * (null if no peer exists.) */ // Font peerFont; /** * The cursor displayed when pointer is over this component. * This value can be null. * * @serial * @see #getCursor * @see #setCursor */ Cursor cursor; /** * The locale for the component. * * @serial * @see #getLocale * @see #setLocale */ Locale locale; /** * True when the object should ignore all repaint events. * * @since 1.4 * @serial * @see #setIgnoreRepaint * @see #getIgnoreRepaint */ boolean ignoreRepaint; /** * True when the object is visible. An object that is not * visible is not drawn on the screen. * * @serial * @see #isVisible * @see #setVisible */ boolean visible; /** * True when the object is enabled. An object that is not * enabled does not interact with the user. * * @serial * @see #isEnabled * @see #setEnabled */ boolean enabled; /** * True when the object is valid. An invalid object needs to * be layed out. This flag is set to false when the object * size is changed. * * @serial * @see #isValid * @see #validate * @see #invalidate */ boolean valid; // /** // * The DropTarget associated with this component. // * // * @since 1.2 // * @serial // * @see #setDropTarget // * @see #getDropTarget // */ // DropTarget dropTarget; // PBP/PP // 6203790 should not be added to this spec /** * @serial * @see #add */ // Vector popups; /** * A component's name. * This field can be null. * * @serial * @see #getName * @see #setName(String) */ private String name; /** * A bool to determine whether the name has * been set explicitly. nameExplicitlySet will * be false if the name has not been set and * true if it has. * * @serial * @see #getName * @see #setName(String) */ private boolean nameExplicitlySet; /** * Indicates whether this Component can be focused. * * @serial * @see #setFocusable * @see #isFocusable * @since 1.4 */ private boolean focusable; /** * Tracks whether this Component is relying on default focus travesability. * * @serial * @since 1.4 */ private int isFocusTraversableOverridden; /** * The focus traversal keys. These keys will generate focus traversal * behavior for Components for which focus traversal keys are enabled. If a * value of null is specified for a traversal key, this Component inherits * that traversal key from its parent. If all ancestors of this Component * have null specified for that traversal key, then the current * KeyboardFocusManager's default traversal key is used. * * @serial * @see #setFocusTraversalKeys * @see #getFocusTraversalKeys * @since 1.4 */ Set[] focusTraversalKeys; /** * Indicates whether focus traversal keys are enabled for this Component. * Components for which focus traversal keys are disabled receive key * events for focus traversal keys. Components for which focus traversal * keys are enabled do not see these events; instead, the events are * automatically converted to traversal operations. * * @serial * @see #setFocusTraversalKeysEnabled * @see #getFocusTraversalKeysEnabled * @since 1.4 */ private boolean focusTraversalKeysEnabled; /** * Internal, cached size information. * (This field perhaps should have been transient). * * @serial */ Dimension minSize; /** * Internal, cached size information * (This field perhaps should have been transient). * * @serial */ Dimension prefSize; // PBP/PP 6203759 field should not be added to the PBP/PP spec /** * newEventsOnly will be true if the event is * one of the event types enabled for the component. * It will then allow for normal processing to * continue. If it is false the event is passed * to the component's parent and up the ancestor * tree until the event has been consumed. * * @serial * @see #dispatchEvent */ // boolean newEventsOnly; /** * The eventMask is ONLY set by subclasses via * enableEvents. * The mask should NOT be set when listeners are registered * so that we can distinguish the difference between when * listeners request events and subclasses request them. * One bit is used to indicate whether input methods are * enabled; this bit is set by enableInputMethods and is * on by default. * * @serial * @see #enableInputMethods * @see AWTEvent */ long eventMask; /** * If any PropertyChangeListeners have been registered, * the changeSupport field describes them. * * @serial * @since 1.2 * @see #addPropertyChangeListener * @see #removePropertyChangeListener * @see #firePropertyChange */ private java.beans.PropertyChangeSupport changeSupport; boolean isPacked; /** * Component Serialized Data Version. * * @serial */ private int componentSerializedDataVersion; // AccessibleContext accessibleContext; /** * Constructs a new component. Class Component can be * extended directly to create a lightweight component that does not * utilize an opaque native window. A lightweight component must be * hosted by a native container somewhere higher up in the component * tree (for example, by a Frame object). */ protected Component() { } /** * Gets the name of the component. * @return this component's name * @see #setName * @since JDK1.1 */ public String getName() { return null; } /** * Sets the name of the component to the specified string. * @param name the string that is to be this * component's name * @see #getName * @since JDK1.1 */ public void setName(String name) { } /** * Gets the parent of this component. * @return the parent container of this component * @since JDK1.0 */ public Container getParent() { return null;} // /** // * @deprecated As of JDK version 1.1, // * programs should not directly manipulate peers; // * replaced by boolean isDisplayable(). // */ // public ComponentPeer getPeer() { } // /** // * Associate a DropTarget with this component. // * The Component will receive drops only if it // * is enabled. // * // * @see #isEnabled // * @param dt The DropTarget // */ // public synchronized void setDropTarget(DropTarget dt) { } // /** // * Gets the DropTarget associated with this // * Component. // */ // public synchronized DropTarget getDropTarget() { } /** * Gets the GraphicsConfiguration associated with this * Component. * If the Component has not been assigned a specific * GraphicsConfiguration, * the GraphicsConfiguration of the * Component object's top-level container is * returned. * If the Component has been created, but not yet added * to a Container, this method returns null. * * @return the GraphicsConfiguration used by this * Component or null * @since 1.3 */ public java.awt.GraphicsConfiguration getGraphicsConfiguration() { return null;} /** * Gets this component's locking object (the object that owns the thread * sychronization monitor) for AWT component-tree and layout * operations. * @return this component's locking object */ public final Object getTreeLock() { return null;} /** * Gets the toolkit of this component. Note that * the frame that contains a component controls which * toolkit is used by that component. Therefore if the component * is moved from one frame to another, the toolkit it uses may change. * @return the toolkit of this component * @since JDK1.0 */ public Toolkit getToolkit() { return null;} /** * Determines whether this component is valid. A component is valid * when it is correctly sized and positioned within its parent * container and all its children are also valid. Components are * invalidated when they are first shown on the screen. * @return true if the component is valid, false * otherwise * @see #validate * @see #invalidate * @since JDK1.0 */ public boolean isValid() { return false;} /** * Determines whether this component is displayable. A component is * displayable when it is connected to a native screen resource. *

* A component is made displayable either when it is added to * a displayable containment hierarchy or when its containment * hierarchy is made displayable. * A containment hierarchy is made displayable when its ancestor * window is either packed or made visible. *

* A component is made undisplayable either when it is removed from * a displayable containment hierarchy or when its containment hierarchy * is made undisplayable. A containment hierarchy is made * undisplayable when its ancestor window is disposed. * * @return true if the component is displayable, * false otherwise * @see Container#add(Component) * @see Window#pack * @see Window#show * @see Container#remove(Component) * @see Window#dispose * @since 1.2 */ public boolean isDisplayable() { return false;} /** * Determines whether this component should be visible when its * parent is visible. Components are * initially visible, with the exception of top level components such * as Frame objects. * @return true if the component is visible, * false otherwise * @see #setVisible * @since JDK1.0 */ public boolean isVisible() { return false; } /** * Determines whether this component is showing on screen. This means * that the component must be visible, and it must be in a container * that is visible and showing. * @return true if the component is showing, * false otherwise * @see #setVisible * @since JDK1.0 */ public boolean isShowing() { return false;} /** * Determines whether this component is enabled. An enabled component * can respond to user input and generate events. Components are * enabled initially by default. A component may be enabled or disabled by * calling its setEnabled method. * @return true if the component is enabled, * false otherwise * @see #setEnabled * @since JDK1.0 */ public boolean isEnabled() { return false;} /** * Enables or disables this component, depending on the value of the * parameter b. An enabled component can respond to user * input and generate events. Components are enabled initially by default. * *

Note: Disabling a lightweight component does not prevent it from * receiving MouseEvents. * * @param b If true, this component is * enabled; otherwise this component is disabled * @see #isEnabled * @see #isLightweight * @since JDK1.1 */ public void setEnabled(boolean b) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setEnabled(boolean). // */ // public void enable() { } // // /** // * @deprecated As of JDK version 1.1, // * replaced by setEnabled(boolean). // */ // public void enable(boolean b) { } // // /** // * @deprecated As of JDK version 1.1, // * replaced by setEnabled(boolean). // */ // public void disable() { } /** * Returns true if this component is painted to an offscreen image * ("buffer") that's copied to the screen later. Component * subclasses that support double buffering should override this * method to return true if double buffering is enabled. * * @return false by default */ public boolean isDoubleBuffered() { return false;} /** * Enables or disables input method support for this component. If input * method support is enabled and the component also processes key events, * incoming events are offered to * the current input method and will only be processed by the component or * dispatched to its listeners if the input method does not consume them. * By default, input method support is enabled. * * @param enable true to enable, false to disable * @see #processKeyEvent * @since 1.2 */ public void enableInputMethods(boolean enable) { } /** * Shows or hides this component depending on the value of parameter * b. * @param b if true, shows this component; * otherwise, hides this component * @see #isVisible * @since JDK1.1 */ public void setVisible(boolean b) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setVisible(boolean). // */ // public void show() { } // // /** // * @deprecated As of JDK version 1.1, // * replaced by setVisible(boolean). // */ // public void show(boolean b) { } // // /** // * @deprecated As of JDK version 1.1, // * replaced by setVisible(boolean). // */ // public void hide() { } /** * Gets the foreground color of this component. * @return this component's foreground color; if this component does * not have a foreground color, the foreground color of its parent * is returned * @see #setForeground * @since JDK1.0 * @beaninfo * bound: true */ public Color getForeground() { return null;} /** * Sets the foreground color of this component. * @param c the color to become this component's * foreground color; if this parameter is null * then this component will inherit * the foreground color of its parent * @see #getForeground * @since JDK1.0 */ public void setForeground(Color c) { } /** * Returns whether the foreground color has been explicitly set for this * Component. If this method returns false, this Component is * inheriting its foreground color from an ancestor. * * @return true if the foreground color has been explicitly * set for this Component; false otherwise. * @since 1.4 */ public boolean isForegroundSet() { return false; } /** * Gets the background color of this component. * @return this component's background color; if this component does * not have a background color, * the background color of its parent is returned * @see #setBackground * @since JDK1.0 */ public Color getBackground() { return null;} /** * Sets the background color of this component. *

* The background color affects each component differently and the * parts of the component that are affected by the background color * may differ between operating systems. * * @param c the color to become this component's color; * if this parameter is null, then this * component will inherit the background color of its parent * @see #getBackground * @since JDK1.0 * @beaninfo * bound: true */ public void setBackground(Color c) { } /** * Returns whether the background color has been explicitly set for this * Component. If this method returns false, this Component is * inheriting its background color from an ancestor. * * @return true if the background color has been explicitly * set for this Component; false otherwise. * @since 1.4 */ public boolean isBackgroundSet() { return false; } /** * Gets the font of this component. * @return this component's font; if a font has not been set * for this component, the font of its parent is returned * @see #setFont * @since JDK1.0 */ public Font getFont() { return null;} /** * Sets the font of this component. * @param f the font to become this component's font; * if this parameter is null then this * component will inherit the font of its parent * @see #getFont * @since JDK1.0 * @beaninfo * bound: true */ public void setFont(Font f) { } /** * Returns whether the font has been explicitly set for this Component. If * this method returns false, this Component is inheriting its * font from an ancestor. * * @return true if the font has been explicitly set for this * Component; false otherwise. * @since 1.4 */ public boolean isFontSet() { return false; } /** * Gets the locale of this component. * @return this component's locale; if this component does not * have a locale, the locale of its parent is returned * @see #setLocale * @exception IllegalComponentStateException if the Component * does not have its own locale and has not yet been added to * a containment hierarchy such that the locale can be determined * from the containing parent * @since JDK1.1 */ public Locale getLocale() { return null;} /** * Sets the locale of this component. This is a bound property. * @param l the locale to become this component's locale * @see #getLocale * @since JDK1.1 */ public void setLocale(Locale l) { } // PBP/PP /** * Gets the instance of ColorModel used to display * the component on the output device. * @return the color model used by this component * @see java.awt.image.ColorModel * @see Toolkit#getColorModel() * @since JDK1.0 */ public ColorModel getColorModel() { return null;} /** * Gets the location of this component in the form of a * point specifying the component's top-left corner. * The location will be relative to the parent's coordinate space. *

* Due to the asynchronous nature of native event handling, this * method can return outdated values (for instance, after several calls * of setLocation() in rapid succession). For this * reason, the recommended method of obtaining a component's position is * within java.awt.event.ComponentListener.componentMoved(), * which is called after the operating system has finished moving the * component. *

* @return an instance of Point representing * the top-left corner of the component's bounds in * the coordinate space of the component's parent * @see #setLocation * @see #getLocationOnScreen * @since JDK1.1 */ public Point getLocation() { return null;} /** * Gets the location of this component in the form of a point * specifying the component's top-left corner in the screen's * coordinate space. * @return an instance of Point representing * the top-left corner of the component's bounds in the * coordinate space of the screen * @throws IllegalComponentStateException if the * component is not showing on the screen * @see #setLocation * @see #getLocation */ public Point getLocationOnScreen() { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getLocation(). // */ // public Point location() { return null;} /** * Moves this component to a new location. The top-left corner of * the new location is specified by the x and y * parameters in the coordinate space of this component's parent. * @param x the x-coordinate of the new location's * top-left corner in the parent's coordinate space * @param y the y-coordinate of the new location's * top-left corner in the parent's coordinate space * @see #getLocation * @see #setBounds * @since JDK1.1 */ public void setLocation(int x, int y) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setLocation(int, int). // */ // public void move(int x, int y) { } /** * Moves this component to a new location. The top-left corner of * the new location is specified by point p. Point * p is given in the parent's coordinate space. * @param p the point defining the top-left corner * of the new location, given in the coordinate space of this * component's parent * @see #getLocation * @see #setBounds * @since JDK1.1 */ public void setLocation(Point p) { } /** * Returns the size of this component in the form of a * Dimension object. The height * field of the Dimension object contains * this component's height, and the width * field of the Dimension object contains * this component's width. * @return a Dimension object that indicates the * size of this component * @see #setSize * @since JDK1.1 */ public Dimension getSize() { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getSize(). // */ // public Dimension size() { return null;} /** * Resizes this component so that it has width width * and height height. * @param width the new width of this component in pixels * @param height the new height of this component in pixels * @see #getSize * @see #setBounds * @since JDK1.1 */ public void setSize(int width, int height) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setSize(int, int). // */ // public void resize(int width, int height) { } /** * Resizes this component so that it has width d.width * and height d.height. * @param d the dimension specifying the new size * of this component * @see #setSize * @see #setBounds * @since JDK1.1 */ public void setSize(Dimension d) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setSize(Dimension). // */ // public void resize(Dimension d) { } /** * Gets the bounds of this component in the form of a * Rectangle object. The bounds specify this * component's width, height, and location relative to * its parent. * @return a rectangle indicating this component's bounds * @see #setBounds * @see #getLocation * @see #getSize */ public Rectangle getBounds() { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getBounds(). // */ // public Rectangle bounds() { return null;} /** * Moves and resizes this component. The new location of the top-left * corner is specified by x and y, and the * new size is specified by width and height. * @param x the new x-coordinate of this component * @param y the new y-coordinate of this component * @param width the new width of this component * @param height the new height of this * component * @see #getBounds * @see #setLocation(int, int) * @see #setLocation(Point) * @see #setSize(int, int) * @see #setSize(Dimension) * @since JDK1.1 */ public void setBounds(int x, int y, int width, int height) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by setBounds(int, int, int, int). // */ // public void reshape(int x, int y, int width, int height) { } /** * Moves and resizes this component to conform to the new * bounding rectangle r. This component's new * position is specified by r.x and r.y, * and its new size is specified by r.width and * r.height * @param r the new bounding rectangle for this component * @see #getBounds * @see #setLocation(int, int) * @see #setLocation(Point) * @see #setSize(int, int) * @see #setSize(Dimension) * @since JDK1.1 */ public void setBounds(Rectangle r) { } /** * Returns the current x coordinate of the components origin. * This method is preferable to writing * component.getBounds().x, * or component.getLocation().x because it doesn't * cause any heap allocations. * * @return the current x coordinate of the components origin * @since 1.2 */ public int getX() { return 0;} /** * Returns the current y coordinate of the components origin. * This method is preferable to writing * component.getBounds().y, * or component.getLocation().y because it * doesn't cause any heap allocations. * * @return the current y coordinate of the components origin * @since 1.2 */ public int getY() { return 0;} /** * Returns the current width of this component. * This method is preferable to writing * component.getBounds().width, * or component.getSize().width because it * doesn't cause any heap allocations. * * @return the current width of this component * @since 1.2 */ public int getWidth() { return 0;} /** * Returns the current height of this component. * This method is preferable to writing * component.getBounds().height * or component.getSize().height because it * doesn't cause any heap allocations. * * @return the current height of this component * @since 1.2 */ public int getHeight() { return 0;} /** * Stores the bounds of this component into "return value" rv and * return rv. If rv is null a new * Rectangle is allocated. * This version of getBounds is useful if the caller * wants to avoid allocating a new Rectangle object * on the heap. * * @param rv the return value, modified to the components bounds * @return rv */ public Rectangle getBounds(Rectangle rv) { return null;} /** * Stores the width/height of this component into "return value" rv * and return rv. If rv is null a new * Dimension object is allocated. This version of * getSize is useful if the caller wants to avoid * allocating a new Dimension object on the heap. * * @param rv the return value, modified to the components size * @return rv */ public Dimension getSize(Dimension rv) { return null;} /** * Stores the x,y origin of this component into "return value" rv * and return rv. If rv is null a new * Point is allocated. * This version of getLocation is useful if the * caller wants to avoid allocating a new Point * object on the heap. * * @param rv the return value, modified to the components location * @return rv */ public Point getLocation(Point rv) { return null;} /** * Returns true if this component is completely opaque, returns * false by default. *

* An opaque component paints every pixel within its * rectangular region. A non-opaque component paints only some of * its pixels, allowing the pixels underneath it to "show through". * A component that does not fully paint its pixels therefore * provides a degree of transparency. Only lightweight * components can be transparent. *

* Subclasses that guarantee to always completely paint their * contents should override this method and return true. All * of the "heavyweight" AWT components are opaque. * * @return true if this component is completely opaque * @see #isLightweight * @since 1.2 */ public boolean isOpaque() { return false;} // PBP/PP 6214663 /** * A lightweight component doesn't have a native toolkit peer. * Subclasses of Component and Container, * other than the ones defined in this package like Button * are lightweight. * All of the Swing components are lightweights. *

* This method will always return false if this component * is not displayable because it is impossible to determine the * weight of an undisplayable component. * * @return true if this component has a lightweight peer; false if * it has a native peer or no peer * @see #isDisplayable * @since 1.2 */ public boolean isLightweight() { return false;} /** * Gets the preferred size of this component. * @return a dimension object indicating this component's preferred size * @see #getMinimumSize * @see LayoutManager */ public Dimension getPreferredSize() { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getPreferredSize(). // */ // public Dimension preferredSize() { return null;} /** * Gets the mininimum size of this component. * @return a dimension object indicating this component's minimum size * @see #getPreferredSize * @see LayoutManager */ public Dimension getMinimumSize() { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getMinimumSize(). // */ // public Dimension minimumSize() { return null;} /** * Gets the maximum size of this component. * @return a dimension object indicating this component's maximum size * @see #getMinimumSize * @see #getPreferredSize * @see LayoutManager */ public Dimension getMaximumSize() { return null;} /** * Returns the alignment along the x axis. This specifies how * the component would like to be aligned relative to other * components. The value should be a number between 0 and 1 * where 0 represents alignment along the origin, 1 is aligned * the furthest away from the origin, 0.5 is centered, etc. */ public float getAlignmentX() {return 0; } /** * Returns the alignment along the y axis. This specifies how * the component would like to be aligned relative to other * components. The value should be a number between 0 and 1 * where 0 represents alignment along the origin, 1 is aligned * the furthest away from the origin, 0.5 is centered, etc. */ public float getAlignmentY() { return 0;} /** * Prompts the layout manager to lay out this component. This is * usually called when the component (more specifically, container) * is validated. * @see #validate * @see LayoutManager */ public void doLayout() { } // /** // * @deprecated As of JDK version 1.1, // * replaced by doLayout(). // */ // public void layout() { } /** * Ensures that this component has a valid layout. This method is * primarily intended to operate on instances of Container. * @see #invalidate * @see #doLayout() * @see LayoutManager * @see Container#validate * @since JDK1.0 */ public void validate() { } /** * Invalidates this component. This component and all parents * above it are marked as needing to be laid out. This method can * be called often, so it needs to execute quickly. * @see #validate * @see #doLayout * @see LayoutManager * @since JDK1.0 */ public void invalidate() { } /** * Creates a graphics context for this component. This method will * return null if this component is currently not * displayable. * @return a graphics context for this component, or null * if it has none * @see #paint * @since JDK1.0 */ public Graphics getGraphics() { return null;} // PBP/PP /** * Gets the font metrics for the specified font. * @param font the font for which font metrics is to be * obtained * @return the font metrics for font * @see #getFont * @see Toolkit#getFontMetrics(Font) * @since JDK1.0 */ public FontMetrics getFontMetrics(Font font) { return null;} // PBP/PP /** * Sets the cursor image to the specified cursor. This cursor * image is displayed when the contains method for * this component returns true for the current cursor location, and * this Component is visible, displayable, and enabled. Setting the * cursor of a Container causes that cursor to be displayed * within all of the container's subcomponents, except for those * that have a non-null cursor. * * @param cursor One of the constants defined * by the Cursor class; * if this parameter is null * then this component will inherit * the cursor of its parent * @see #isEnabled * @see #isShowing * @see #getCursor * @see #contains * @see Cursor * @since JDK1.1 */ public void setCursor(Cursor cursor) { } /** * Gets the cursor set in the component. If the component does * not have a cursor set, the cursor of its parent is returned. * If no cursor is set in the entire hierarchy, * Cursor.DEFAULT_CURSOR is returned. * @see #setCursor * @since JDK1.1 */ public Cursor getCursor() { return null;} /** * Returns whether the cursor has been explicitly set for this Component. * If this method returns false, this Component is inheriting * its cursor from an ancestor. * * @return true if the cursor has been explicitly set for this * Component; false otherwise. * @since 1.4 */ public boolean isCursorSet() { return false; } /** * Paints this component. *

* This method is called when the contents of the component should * be painted; such as when the component is first being shown or * is damaged and in need of repair. The clip rectangle in the * Graphics parameter is set to the area * which needs to be painted. * Subclasses of Component that override this * method need not call super.paint(g). *

* For performance reasons, Components with zero width * or height aren't considered to need painting when they are first shown, * and also aren't considered to need repair. *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * @param g the graphics context to use for painting * @see #update * @since JDK1.0 */ public void paint(Graphics g) { } /** * Updates this component. *

* If this component is not a lightweight component, the * AWT calls the update method in response to * a call to repaint. You can assume that * the background is not cleared. *

* The updatemethod of Component * calls this component's paint method to redraw * this component. This method is commonly overridden by subclasses * which need to do additional work in response to a call to * repaint. * Subclasses of Component that override this method should either * call super.update(g), or call paint directly. *

* The origin of the graphics context, its * (00) coordinate point, is the * top-left corner of this component. The clipping region of the * graphics context is the bounding rectangle of this component. * *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * @param g the specified context to use for updating * @see #paint * @see #repaint() * @since JDK1.0 */ public void update(Graphics g) { } /** * Paints this component and all of its subcomponents. *

* The origin of the graphics context, its * (00) coordinate point, is the * top-left corner of this component. The clipping region of the * graphics context is the bounding rectangle of this component. * * @param g the graphics context to use for painting * @see #paint * @since JDK1.0 */ public void paintAll(Graphics g) { } /** * Repaints this component. *

* If this component is a lightweight component, this method * causes a call to this component's paint * method as soon as possible. Otherwise, this method causes * a call to this component's update method as soon * as possible. *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * * @see #update(Graphics) * @since JDK1.0 */ public void repaint() { } /** * Repaints the component. If this component is a lightweight * component, this results in a call to paint * within tm milliseconds. *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * @param tm maximum time in milliseconds before update * @see #paint * @see #update(Graphics) * @since JDK1.0 */ public void repaint(long tm) { } /** * Repaints the specified rectangle of this component. *

* If this component is a lightweight component, this method * causes a call to this component's paint method * as soon as possible. Otherwise, this method causes a call to * this component's update method as soon as possible. *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * @param x the x coordinate * @param y the y coordinate * @param width the width * @param height the height * @see #update(Graphics) * @since JDK1.0 */ public void repaint(int x, int y, int width, int height) { } /** * Repaints the specified rectangle of this component within * tm milliseconds. *

* If this component is a lightweight component, this method causes * a call to this component's paint method. * Otherwise, this method causes a call to this component's * update method. *

* Note: For more information on the paint mechanisms utilitized * by AWT and Swing, including information on how to write the most * efficient painting code, see * Painting in AWT and Swing. * * @param tm maximum time in milliseconds before update * @param x the x coordinate * @param y the y coordinate * @param width the width * @param height the height * @see #update(Graphics) * @since JDK1.0 */ public void repaint(long tm, int x, int y, int width, int height) { } /** * Prints this component. Applications should override this method * for components that must do special processing before being * printed or should be printed differently than they are painted. *

* The default implementation of this method calls the * paint method. *

* The origin of the graphics context, its * (00) coordinate point, is the * top-left corner of this component. The clipping region of the * graphics context is the bounding rectangle of this component. * @param g the graphics context to use for printing * @see #paint(Graphics) * @since JDK1.0 */ public void print(Graphics g) { } /** * Prints this component and all of its subcomponents. *

* The origin of the graphics context, its * (00) coordinate point, is the * top-left corner of this component. The clipping region of the * graphics context is the bounding rectangle of this component. * @param g the graphics context to use for printing * @see #print(Graphics) * @since JDK1.0 */ public void printAll(Graphics g) { } /** * Repaints the component when the image has changed. * This imageUpdate method of an ImageObserver * is called when more information about an * image which had been previously requested using an asynchronous * routine such as the drawImage method of * Graphics becomes available. * See the definition of imageUpdate for * more information on this method and its arguments. *

* The imageUpdate method of Component * incrementally draws an image on the component as more of the bits * of the image are available. *

* If the system property awt.image.incrementaldraw * is missing or has the value true, the image is * incrementally drawn. If the system property has any other value, * then the image is not drawn until it has been completely loaded. *

* Also, if incremental drawing is in effect, the value of the * system property awt.image.redrawrate is interpreted * as an integer to give the maximum redraw rate, in milliseconds. If * the system property is missing or cannot be interpreted as an * integer, the redraw rate is once every 100ms. *

* The interpretation of the x, y, * width, and height arguments depends on * the value of the infoflags argument. * * @param img the image being observed * @param infoflags see imageUpdate for more information * @param x the x coordinate * @param y the y coordinate * @param w the width * @param h the height * @return false if the infoflags indicate that the * image is completely loaded; true otherwise. * * @see java.awt.image.ImageObserver * @see Graphics#drawImage(Image, int, int, Color, java.awt.image.ImageObserver) * @see Graphics#drawImage(Image, int, int, java.awt.image.ImageObserver) * @see Graphics#drawImage(Image, int, int, int, int, Color, java.awt.image.ImageObserver) * @see Graphics#drawImage(Image, int, int, int, int, java.awt.image.ImageObserver) * @see java.awt.image.ImageObserver#imageUpdate(java.awt.Image, int, int, int, int, int) * @since JDK1.0 */ public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h) { return false;} /** * Creates an image from the specified image producer. * @param producer the image producer * @return the image produced * @since JDK1.0 */ public Image createImage(ImageProducer producer) { return null;} /** * Creates an off-screen drawable image * to be used for double buffering. * @param width the specified width * @param height the specified height * @return an off-screen drawable image, which can be used for double * buffering. The return value may be null if the * component is not displayable. This will always happen if * GraphicsEnvironment.isHeadless() returns * true. * @see #isDisplayable * @see GraphicsEnvironment#isHeadless * @since JDK1.0 */ public Image createImage(int width, int height) { return null;} /** * Creates a volatile off-screen drawable image * to be used for double buffering. * @param width the specified width. * @param height the specified height. * @return an off-screen drawable image, which can be used for double * buffering. The return value may be null if the * component is not displayable. This will always happen if * GraphicsEnvironment.isHeadless() returns * true. * @see java.awt.image.VolatileImage * @see #isDisplayable * @see GraphicsEnvironment#isHeadless * @since 1.4 */ public VolatileImage createVolatileImage(int width, int height) { return null; } /** * Creates a volatile off-screen drawable image, with the given capabilities. * The contents of this image may be lost at any time due * to operating system issues, so the image must be managed * via the VolatileImage interface. * @param width the specified width. * @param height the specified height. * @param caps the image capabilities * @exception AWTException if an image with the specified capabilities cannot * be created * @return a VolatileImage object, which can be used * to manage surface contents loss and capabilities. * @see java.awt.image.VolatileImage * @since 1.4 */ public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException { return null; } /** * Prepares an image for rendering on this component. The image * data is downloaded asynchronously in another thread and the * appropriate screen representation of the image is generated. * @param image the Image for which to * prepare a screen representation * @param observer the ImageObserver object * to be notified as the image is being prepared * @return true if the image has already been fully * prepared; false otherwise * @since JDK1.0 */ public boolean prepareImage(Image image, ImageObserver observer) { return false; } /** * Prepares an image for rendering on this component at the * specified width and height. *

* The image data is downloaded asynchronously in another thread, * and an appropriately scaled screen representation of the image is * generated. * @param image the instance of Image * for which to prepare a screen representation * @param width the width of the desired screen representation * @param height the height of the desired screen representation * @param observer the ImageObserver object * to be notified as the image is being prepared * @return true if the image has already been fully * prepared; false otherwise * @see java.awt.image.ImageObserver * @since JDK1.0 */ public boolean prepareImage(Image image, int width, int height, ImageObserver observer) { return false;} /** * Returns the status of the construction of a screen representation * of the specified image. *

* This method does not cause the image to begin loading. An * application must use the prepareImage method * to force the loading of an image. *

* Information on the flags returned by this method can be found * with the discussion of the ImageObserver interface. * @param image the Image object whose status * is being checked * @param observer the ImageObserver * object to be notified as the image is being prepared * @return the bitwise inclusive OR of * ImageObserver flags indicating what * information about the image is currently available * @see #prepareImage(Image, int, int, java.awt.image.ImageObserver) * @see Toolkit#checkImage(Image, int, int, java.awt.image.ImageObserver) * @see java.awt.image.ImageObserver * @since JDK1.0 */ public int checkImage(Image image, ImageObserver observer) { return 0;} /** * Returns the status of the construction of a screen representation * of the specified image. *

* This method does not cause the image to begin loading. An * application must use the prepareImage method * to force the loading of an image. *

* The checkImage method of Component * calls its peer's checkImage method to calculate * the flags. If this component does not yet have a peer, the * component's toolkit's checkImage method is called * instead. *

* Information on the flags returned by this method can be found * with the discussion of the ImageObserver interface. * @param image the Image object whose status * is being checked * @param width the width of the scaled version * whose status is to be checked * @param height the height of the scaled version * whose status is to be checked * @param observer the ImageObserver object * to be notified as the image is being prepared * @return the bitwise inclusive OR of * ImageObserver flags indicating what * information about the image is currently available * @see #prepareImage(Image, int, int, java.awt.image.ImageObserver) * @see Toolkit#checkImage(Image, int, int, java.awt.image.ImageObserver) * @see java.awt.image.ImageObserver * @since JDK1.0 */ public int checkImage(Image image, int width, int height, ImageObserver observer) { return 0;} // PBP/PP // [6184232] /** * Sets whether or not paint messages received from the operating system * should be ignored. This does not affect paint events generated in * software by the AWT, unless they are an immediate response to an * OS-level paint message. * * *

* This is useful, for example, if running under full-screen mode and * better performance is desired. * * @since 1.4 * @see #getIgnoreRepaint * */ public void setIgnoreRepaint(boolean ignoreRepaint) { } // /** * @return whether or not paint messages received from the operating system * should be ignored. * * @since 1.4 * @see #setIgnoreRepaint */ public boolean getIgnoreRepaint() {return false;} /** * Checks whether this component "contains" the specified point, * where x and y are defined to be * relative to the coordinate system of this component. * @param x the x coordinate of the point * @param y the y coordinate of the point * @see #getComponentAt(int, int) * @since JDK1.1 */ public boolean contains(int x, int y) { return false;} // /** // * @deprecated As of JDK version 1.1, // * replaced by contains(int, int). // */ // public boolean inside(int x, int y) { return false;} /** * Checks whether this component "contains" the specified point, * where the point's x and y coordinates are defined * to be relative to the coordinate system of this component. * @param p the point * @see #getComponentAt(Point) * @since JDK1.1 */ public boolean contains(Point p) {return false; } // PBP/PP 6217640 /** * Determines if this component or one of its immediate * subcomponents contains the (xy) location, * and if so, returns the containing component. This method only * looks one level deep. If the point (xy) is * inside a subcomponent that itself has subcomponents, it does not * go looking down the subcomponent tree. *

* The getComponentAt method of Component simply * returns the component itself if the (xy) * coordinate location is inside its bounding box, and null * otherwise. * @param x the x coordinate * @param y the y coordinate * @return the component or subcomponent that contains the * (xy) location; * null if the location * is outside this component * @see #contains(int, int) * @since JDK1.0 */ public Component getComponentAt(int x, int y) { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by getComponentAt(int, int). // */ // public Component locate(int x, int y) { return null;} /** * Returns the component or subcomponent that contains the * specified point. * @param p the point * @see java.awt.Component#contains * @since JDK1.1 */ public Component getComponentAt(Point p) { return null;} // /** // * @deprecated As of JDK version 1.1, // * replaced by dispatchEvent(AWTEvent e). // */ // public void deliverEvent(Event e) { } /** * Dispatches an event to this component or one of its sub components. * Calls processEvent before returning for 1.1-style * events which have been enabled for the Component. * @param e the event */ public final void dispatchEvent(AWTEvent e) { } // /** // * @deprecated As of JDK version 1.1, // * replaced by dispatchEvent(AWTEvent). // */ // public boolean postEvent(Event e) { return false;} /** * Adds the specified component listener to receive component events from * this component. * If listener l is null, * no exception is thrown and no action is performed. * @param l the component listene. * @see java.awt.event.ComponentEvent * @see java.awt.event.ComponentListener * @see #removeComponentListener * @see #getComponentListeners * @since JDK1.1 */ public synchronized void addComponentListener(ComponentListener l) { } /** * Removes the specified component listener so that it no longer * receives component events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * @param l the component listener * @see java.awt.event.ComponentEvent * @see java.awt.event.ComponentListener * @see #addComponentListener * @see #getComponentListeners * @since JDK1.1 */ public synchronized void removeComponentListener(ComponentListener l) { } /** * Returns an array of all the component listeners * registered on this component. * * @return all of this comonent's ComponentListeners * or an empty array if no component * listeners are currently registered * * @see #addComponentListener * @see #removeComponentListener * @since 1.4 */ public synchronized ComponentListener[] getComponentListeners() { return null;} /** * Adds the specified focus listener to receive focus events from * this component when this component gains input focus. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the focus listener * @see java.awt.event.FocusEvent * @see java.awt.event.FocusListener * @see #removeFocusListener * @since JDK1.1 */ public synchronized void addFocusListener(FocusListener l) { } /** * Removes the specified focus listener so that it no longer * receives focus events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the focus listener * @see java.awt.event.FocusEvent * @see java.awt.event.FocusListener * @see #addFocusListener * @since JDK1.1 */ public synchronized void removeFocusListener(FocusListener l) { } /** * Returns an array of all the focus listeners * registered on this component. * * @return all of this component's FocusListeners * or an empty array if no component * listeners are currently registered * * @see #addFocusListener * @see #removeFocusListener * @since 1.4 */ public synchronized FocusListener[] getFocusListeners() { return null; } // /** // * Adds the specified hierarchy listener to receive hierarchy changed // * events from this component when the hierarchy to which this container // * belongs changes. // * If listener l is null, // * no exception is thrown and no action is performed. // * // * @param l the hierarchy listener // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyListener // * @see #removeHierarchyListener // * @see #getHierarchyListeners // * @since 1.3 // */ // public void addHierarchyListener(HierarchyListener l) { } // // /** // * Removes the specified hierarchy listener so that it no longer // * receives hierarchy changed events from this component. This method // * performs no function, nor does it throw an exception, if the listener // * specified by the argument was not previously added to this component. // * If listener l is null, // * no exception is thrown and no action is performed. // * // * @param l the hierarchy listener // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyListener // * @see #addHierarchyListener // * @see #getHierarchyListeners // * @since 1.3 // */ // public void removeHierarchyListener(HierarchyListener l) { } // // /** // * Returns an array of all the hierarchy listeners // * registered on this component. // * // * @return all of this component's HierarchyListeners // * or an empty array if no hierarchy // * listeners are currently registered // * // * @see #addHierarchyListener // * @see #removeHierarchyListener // * @since 1.4 // */ // public synchronized HierarchyListener[] getHierarchyListeners() { } // // /** // * Adds the specified hierarchy bounds listener to receive hierarchy // * bounds events from this component when the hierarchy to which this // * container belongs changes. // * If listener l is null, // * no exception is thrown and no action is performed. // * // * @param l the hierarchy bounds listener // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyBoundsListener // * @see #removeHierarchyBoundsListener // * @see #getHierarchyBoundsListeners // * @since 1.3 // */ // public void addHierarchyBoundsListener(HierarchyBoundsListener l) { } // // /** // * Removes the specified hierarchy bounds listener so that it no longer // * receives hierarchy bounds events from this component. This method // * performs no function, nor does it throw an exception, if the listener // * specified by the argument was not previously added to this component. // * If listener l is null, // * no exception is thrown and no action is performed. // * // * @param l the hierarchy bounds listener // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyBoundsListener // * @see #addHierarchyBoundsListener // * @see #getHierarchyBoundsListeners // * @since 1.3 // */ // public void removeHierarchyBoundsListener(HierarchyBoundsListener l) { } // // /** // * Returns an array of all the hierarchy bounds listeners // * registered on this component. // * // * @return all of this component's HierarchyBoundsListeners // * or an empty array if no hierarchy bounds // * listeners are currently registered // * // * @see #addHierarchyBoundsListener // * @see #removeHierarchyBoundsListener // * @since 1.4 // */ // public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners() // { } /** * Adds the specified key listener to receive key events from * this component. * If l is null, no exception is thrown and no action is performed. * * @param l the key listener. * @see java.awt.event.KeyEvent * @see java.awt.event.KeyListener * @see #removeKeyListener * @since JDK1.1 */ public synchronized void addKeyListener(KeyListener l) { } /** * Removes the specified key listener so that it no longer * receives key events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the key listener * @see java.awt.event.KeyEvent * @see java.awt.event.KeyListener * @see #addKeyListener * @since JDK1.1 */ public synchronized void removeKeyListener(KeyListener l) { } /** * Returns an array of all the key listeners * registered on this component. * * @return all of this component's KeyListeners * or an empty array if no key * listeners are currently registered * * @see #addKeyListener * @see #removeKeyListener * @since 1.4 */ public synchronized KeyListener[] getKeyListeners() { return null; } /** * Adds the specified mouse listener to receive mouse events from * this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the mouse listener * @see java.awt.event.MouseEvent * @see java.awt.event.MouseListener * @see #removeMouseListener * @since JDK1.1 */ public synchronized void addMouseListener(MouseListener l) { } /** * Removes the specified mouse listener so that it no longer * receives mouse events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the mouse listener * @see java.awt.event.MouseEvent * @see java.awt.event.MouseListener * @see #addMouseListener * @since JDK1.1 */ public synchronized void removeMouseListener(MouseListener l) { } /** * Returns an array of all the mouse listeners * registered on this component. * * @return all of this component's MouseListeners * or an empty array if no mouse * listeners are currently registered * * @see #addMouseListener * @see #removeMouseListener * @since 1.4 */ public synchronized MouseListener[] getMouseListeners() { return null; } /** * Adds the specified mouse motion listener to receive mouse motion * events from this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the mouse motion listener * @see java.awt.event.MouseEvent * @see java.awt.event.MouseMotionListener * @see #removeMouseMotionListener * @see #getMouseMotionListeners * @since JDK1.1 */ public synchronized void addMouseMotionListener(MouseMotionListener l) { } /** * Removes the specified mouse motion listener so that it no longer * receives mouse motion events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the mouse motion listener * @see java.awt.event.MouseEvent * @see java.awt.event.MouseMotionListener * @see #addMouseMotionListener * @since JDK1.1 */ public synchronized void removeMouseMotionListener(MouseMotionListener l) { } /** * Returns an array of all the mouse motion listeners * registered on this component. * * @return all of this component's MouseMotionListeners * or an empty array if no mouse motion * listeners are currently registered * * @see #addMouseMotionListener * @see #removeMouseMotionListener * @since 1.4 */ public synchronized MouseMotionListener[] getMouseMotionListeners() { return null; } /** * Adds the specified mouse wheel listener to receive mouse wheel events * from this component. Containers also receive mouse wheel events from * sub-components. * If l is null, no exception is thrown and no action is performed. * * @param l the mouse wheel listener. * @see java.awt.event.MouseWheelEvent * @see java.awt.event.MouseWheelListener * @see #removeMouseWheelListener * @see #getMouseWheelListeners * @since 1.4 */ public synchronized void addMouseWheelListener(MouseWheelListener l) { } /** * Removes the specified mouse wheel listener so that it no longer * receives mouse wheel events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If l is null, no exception is thrown and no action is performed. * * @param l the mouse wheel listener. * @see java.awt.event.MouseWheelEvent * @see java.awt.event.MouseWheelListener * @see #addMouseWheelListener * @see #getMouseWheelListeners * @since 1.4 */ public synchronized void removeMouseWheelListener(MouseWheelListener l) { } /** * Returns an array of all the mouse wheel listeners * registered on this component. * * @return all of this component's MouseWheelListeners * or an empty array if no mouse wheel * listeners are currently registered * * @see #addMouseWheelListener * @see #removeMouseWheelListener * @since 1.4 */ public synchronized MouseWheelListener[] getMouseWheelListeners() { return null; } // /** /** * Adds the specified input method listener to receive * input method events from this component. A component will * only receive input method events from input methods * if it also overrides getInputMethodRequests to return an * InputMethodRequests instance. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the input method listener * @see java.awt.event.InputMethodEvent * @see java.awt.event.InputMethodListener * @see #removeInputMethodListener * @see #getInputMethodListeners * @see #getInputMethodRequests * @since 1.2 */ public synchronized void addInputMethodListener(java.awt.event.InputMethodListener l) { } // /** * Removes the specified input method listener so that it no longer * receives input method events from this component. This method performs * no function, nor does it throw an exception, if the listener * specified by the argument was not previously added to this component. * If listener l is null, * no exception is thrown and no action is performed. * * @param l the input method listener * @see java.awt.event.InputMethodEvent * @see java.awt.event.InputMethodListener * @see #addInputMethodListener * @see #getInputMethodListeners * @since 1.2 */ public synchronized void removeInputMethodListener(java.awt.event.InputMethodListener l) { } // /** * Returns an array of all the input method listeners * registered on this component. * * @return all of this component's InputMethodListeners * or an empty array if no input method * listeners are currently registered * * @see #addInputMethodListener * @see #removeInputMethodListener * @since 1.4 */ public synchronized java.awt.event.InputMethodListener[] getInputMethodListeners() { return null; } // /** // * Returns an array of all the objects currently registered // * as FooListeners // * upon this Component. // * FooListeners are registered using the // * addFooListener method. // * // *

// * You can specify the listenerType argument // * with a class literal, such as // * FooListener.class. // * For example, you can query a // * Component c // * for its mouse listeners with the following code: // * // *

MouseListener[] mls = (MouseListener[])(c.getListeners(MouseListener.class));
// * // * If no such listeners exist, this method returns an empty array. // * // * @param listenerType the type of listeners requested; this parameter // * should specify an interface that descends from // * java.util.EventListener // * @return an array of all objects registered as // * FooListeners on this component, // * or an empty array if no such listeners have been added // * @exception ClassCastException if listenerType // * doesn't specify a class or interface that implements // * java.util.EventListener // * // * @see #getComponentListeners // * @see #getFocusListeners // * @see #getHierarchyListeners // * @see #getHierarchyBoundsListeners // * @see #getKeyListeners // * @see #getMouseListeners // * @see #getMouseMotionListeners // * @see #getMouseWheelListeners // * @see #getInputMethodListeners // * @see #getPropertyChangeListeners // * // * @since 1.3 // */ // public EventListener[] getListeners(Class listenerType) { // return null; // } /** * Gets the input method request handler which supports * requests from input methods for this component. A component * that supports on-the-spot text input must override this * method to return an InputMethodRequests instance. * At the same time, it also has to handle input method events. * * @return the input method request handler for this component, * null by default * @see #addInputMethodListener * @since 1.2 */ public InputMethodRequests getInputMethodRequests() { return null; } // /** * Gets the input context used by this component for handling * the communication with input methods when text is entered * in this component. By default, the input context used for * the parent component is returned. Components may * override this to return a private input context. * * @return the input context used by this component; * null if no context can be determined * @since 1.2 */ public InputContext getInputContext() { return null; } /** * Enables the events defined by the specified event mask parameter * to be delivered to this component. *

* Event types are automatically enabled when a listener for * that event type is added to the component. *

* This method only needs to be invoked by subclasses of * Component which desire to have the specified event * types delivered to processEvent regardless of whether * or not a listener is registered. * @param eventsToEnable the event mask defining the event types * @see #processEvent * @see #disableEvents * @see AWTEvent * @since JDK1.1 */ protected final void enableEvents(long eventsToEnable) { } /** * Disables the events defined by the specified event mask parameter * from being delivered to this component. * @param eventsToDisable the event mask defining the event types * @see #enableEvents * @since JDK1.1 */ protected final void disableEvents(long eventsToDisable) { } /** * Potentially coalesce an event being posted with an existing * event. This method is called by EventQueue.postEvent * if an event with the same ID as the event to be posted is found in * the queue (both events must have this component as their source). * This method either returns a coalesced event which replaces * the existing event (and the new event is then discarded), or * null to indicate that no combining should be done * (add the second event to the end of the queue). Either event * parameter may be modified and returned, as the other one is discarded * unless null is returned. *

* This implementation of coalesceEvents coalesces * two event types: mouse move (and drag) events, * and paint (and update) events. * For mouse move events the last event is always returned, causing * intermediate moves to be discarded. For paint events, the new * event is coalesced into a complex RepaintArea in the peer. * The new AWTEvent is always returned. * * @param existingEvent the event already on the EventQueue * @param newEvent the event being posted to the * EventQueue * @return a coalesced event, or null indicating that no * coalescing was done */ protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent) { return null;} // PBP/PP /** * Processes events occurring on this component. By default this * method calls the appropriate * process<event type>Event * method for the given class of event. *

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the event * @see #processComponentEvent * @see #processFocusEvent * @see #processKeyEvent * @see #processMouseEvent * @see #processMouseMotionEvent * @see #processInputMethodEvent * @see #processMouseWheelEvent * @since JDK1.1 */ protected void processEvent(AWTEvent e) { } /** * Processes component events occurring on this component by * dispatching them to any registered * ComponentListener objects. *

* This method is not called unless component events are * enabled for this component. Component events are enabled * when one of the following occurs: *

    *
  • A ComponentListener object is registered * via addComponentListener. *
  • Component events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the component event * @see java.awt.event.ComponentEvent * @see java.awt.event.ComponentListener * @see #addComponentListener * @see #enableEvents * @since JDK1.1 */ protected void processComponentEvent(ComponentEvent e) { } /** * Processes focus events occurring on this component by * dispatching them to any registered * FocusListener objects. *

* This method is not called unless focus events are * enabled for this component. Focus events are enabled * when one of the following occurs: *

    *
  • A FocusListener object is registered * via addFocusListener. *
  • Focus events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the focus event * @see java.awt.event.FocusEvent * @see java.awt.event.FocusListener * @see #addFocusListener * @see #enableEvents * @since JDK1.1 */ protected void processFocusEvent(FocusEvent e) { } /** * Processes key events occurring on this component by * dispatching them to any registered * KeyListener objects. *

* This method is not called unless key events are * enabled for this component. Key events are enabled * when one of the following occurs: *

    *
  • A KeyListener object is registered * via addKeyListener. *
  • Key events are enabled via enableEvents. *
* *

Note that this method is not called by the event * dispatch thread if the component is not the focus * owner of if the component is not showing. This method * is called when key events are * registered via the addKeyListener or * enableEvents methods but, as of release 1.4, * the implementation of the AWT event dispatching thread * redirects KeyEvent to the focus owner. * Please see the * Focus Specification for further information. * *

If the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the key event * @see java.awt.event.KeyEvent * @see java.awt.event.KeyListener * @see #addKeyListener * @see #enableEvents * @see #isShowing * @since JDK1.1 */ protected void processKeyEvent(KeyEvent e) { } /** * Processes mouse events occurring on this component by * dispatching them to any registered * MouseListener objects. *

* This method is not called unless mouse events are * enabled for this component. Mouse events are enabled * when one of the following occurs: *

    *
  • A MouseListener object is registered * via addMouseListener. *
  • Mouse events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the mouse event * @see java.awt.event.MouseEvent * @see java.awt.event.MouseListener * @see #addMouseListener * @see #enableEvents * @since JDK1.1 */ protected void processMouseEvent(MouseEvent e) { } /** * Processes mouse motion events occurring on this component by * dispatching them to any registered * MouseMotionListener objects. *

* This method is not called unless mouse motion events are * enabled for this component. Mouse motion events are enabled * when one of the following occurs: *

    *
  • A MouseMotionListener object is registered * via addMouseMotionListener. *
  • Mouse motion events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the mouse motion event * @see java.awt.event.MouseEvent * @see java.awt.event.MouseMotionListener * @see #addMouseMotionListener * @see #enableEvents * @since JDK1.1 */ protected void processMouseMotionEvent(MouseEvent e) { } /** * Processes mouse wheel events occurring on this component by * dispatching them to any registered * MouseWheelListener objects. *

* This method is not called unless mouse wheel events are * enabled for this component. Mouse wheel events are enabled * when one of the following occurs: *

    *
  • A MouseWheelListener object is registered * via addMouseWheelListener. *
  • Mouse wheel events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the mouse wheel event. * @see java.awt.event.MouseWheelEvent * @see java.awt.event.MouseWheelListener * @see #addMouseWheelListener * @see #enableEvents * @since 1.4 */ protected void processMouseWheelEvent(MouseWheelEvent e) { } /** * Processes input method events occurring on this component by * dispatching them to any registered * InputMethodListener objects. *

* This method is not called unless input method events * are enabled for this component. Input method events are enabled * when one of the following occurs: *

    *
  • An InputMethodListener object is registered * via addInputMethodListener. *
  • Input method events are enabled via enableEvents. *
*

Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. * * @param e the input method event * @see java.awt.event.InputMethodEvent * @see java.awt.event.InputMethodListener * @see #addInputMethodListener * @see #enableEvents * @since 1.2 */ protected void processInputMethodEvent(java.awt.event.InputMethodEvent e) { } // /** // * Processes hierarchy events occurring on this component by // * dispatching them to any registered // * HierarchyListener objects. // *

// * This method is not called unless hierarchy events // * are enabled for this component. Hierarchy events are enabled // * when one of the following occurs: // *

    // *
  • An HierarchyListener object is registered // * via addHierarchyListener. // *
  • Hierarchy events are enabled via enableEvents. // *
// *

Note that if the event parameter is null // * the behavior is unspecified and may result in an // * exception. // * // * @param e the hierarchy event // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyListener // * @see #addHierarchyListener // * @see #enableEvents // * @since 1.3 // */ // protected void processHierarchyEvent(HierarchyEvent e) { } // // /** // * Processes hierarchy bounds events occurring on this component by // * dispatching them to any registered // * HierarchyBoundsListener objects. // *

// * This method is not called unless hierarchy bounds events // * are enabled for this component. Hierarchy bounds events are enabled // * when one of the following occurs: // *

    // *
  • An HierarchyBoundsListener object is registered // * via addHierarchyBoundsListener. // *
  • Hierarchy bounds events are enabled via enableEvents. // *
// *

Note that if the event parameter is null // * the behavior is unspecified and may result in an // * exception. // * // * @param e the hierarchy event // * @see java.awt.event.HierarchyEvent // * @see java.awt.event.HierarchyBoundsListener // * @see #addHierarchyBoundsListener // * @see #enableEvents // * @since 1.3 // */ // protected void processHierarchyBoundsEvent(HierarchyEvent e) { } // /** // * @deprecated As of JDK version 1.1 // * replaced by processEvent(AWTEvent). // */ // public boolean handleEvent(Event evt) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseEvent(MouseEvent). // */ // public boolean mouseDown(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseMotionEvent(MouseEvent). // */ // public boolean mouseDrag(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseEvent(MouseEvent). // */ // public boolean mouseUp(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseMotionEvent(MouseEvent). // */ // public boolean mouseMove(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseEvent(MouseEvent). // */ // public boolean mouseEnter(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processMouseEvent(MouseEvent). // */ // public boolean mouseExit(Event evt, int x, int y) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processKeyEvent(KeyEvent). // */ // public boolean keyDown(Event evt, int key) { return false;} // // /** // * @deprecated As of JDK version 1.1, // * replaced by processKeyEvent(KeyEvent). // */ // public boolean keyUp(Event evt, int key) { return false; } // // /** // * @deprecated As of JDK version 1.1, // * should register this component as ActionListener on component // * which fires action events. // */ // public boolean action(Event evt, Object what) { return false; } /** * Makes this Component displayable by connecting it to a * native screen resource. * This method is called internally by the toolkit and should * not be called directly by programs. * @see #isDisplayable * @see #removeNotify * @since JDK1.0 */ public void addNotify() { } /** * Makes this Component undisplayable by destroying it native * screen resource. * This method is called by the toolkit internally and should * not be called directly by programs. * @see #isDisplayable * @see #addNotify * @since JDK1.0 */ public void removeNotify() { } // /** // * @deprecated As of JDK version 1.1, // * replaced by processFocusEvent(FocusEvent). // */ // public boolean gotFocus(Event evt, Object what) { return false; } // // /** // * @deprecated As of JDK version 1.1, // * replaced by processFocusEvent(FocusEvent). // */ // public boolean lostFocus(Event evt, Object what) { return false; } /** * Returns whether this Component can become the focus * owner. * * @return true if this Component is * focusable; false otherwise * @see #setFocusable * @since JDK1.1 * @deprecated As of 1.4, replaced by isFocusable(). */ public boolean isFocusTraversable() { return false; } /** * Returns whether this Component can be focused. * * @return true if this Component is focusable; * false otherwise. * @see #setFocusable * @since 1.4 */ public boolean isFocusable() { return false; } /** * Sets the focusable state of this Component to the specified value. This * value overrides the Component's default focusability. * * @param focusable indicates whether this Component is focusable * @see #isFocusable * @since 1.4 * @beaninfo * bound: true */ public void setFocusable(boolean focusable) { } // PBP/PP //[6185059] /** * Sets the focus traversal keys for a given traversal operation for this * Component. *

* The default values for a Component's focus traversal keys are * implementation-dependent. Sun recommends that all implementations for a * particular native platform use the same default values. The * recommendations for Windows and Unix are listed below. * *

* * * * * * * * * * * * * * * * * * * * *
IdentifierMeaningDefault
KeyboardFocusManager.FORWARD_TRAVERSAL_KEYSNormal forward keyboard traversalTAB on KEY_PRESSED, CTRL-TAB on KEY_PRESSED
KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYSNormal reverse keyboard traversalSHIFT-TAB on KEY_PRESSED, CTRL-SHIFT-TAB on KEY_PRESSED
KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYSGo up one focus traversal cyclenone
* * To disable a traversal key, use an empty Set; Collections.EMPTY_SET is * recommended. *

* Using the AWTKeyStroke API, client code can specify on which of two * specific KeyEvents, KEY_PRESSED or KEY_RELEASED, the focus traversal * operation will occur. Regardless of which KeyEvent is specified, * however, all KeyEvents related to the focus traversal key, including the * associated KEY_TYPED event, will be consumed, and will not be dispatched * to any Component. It is a runtime error to specify a KEY_TYPED event as * mapping to a focus traversal operation, or to map the same event to * multiple default focus traversal operations. *

* If a value of null is specified for the Set, this Component inherits the * Set from its parent. If all ancestors of this Component have null * specified for the Set, then the current KeyboardFocusManager's default * Set is used. * *

* Note: The keys available for focus traversal may be limited in * this Profile. See * java.awt.event.KeyEvent * for more information. * * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS * @param keystrokes the Set of AWTKeyStroke for the specified operation * @see #getFocusTraversalKeys * @see KeyboardFocusManager#FORWARD_TRAVERSAL_KEYS * @see KeyboardFocusManager#BACKWARD_TRAVERSAL_KEYS * @see KeyboardFocusManager#UP_CYCLE_TRAVERSAL_KEYS * @throws IllegalArgumentException if id is not one of * KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS, or if keystrokes * contains null, or if any Object in keystrokes is not an * AWTKeyStroke, or if any keystroke represents a KEY_TYPED event, * or if any keystroke already maps to another focus traversal * operation for this Component * @since 1.4 * @beaninfo * bound: true */ public void setFocusTraversalKeys(int id, Set keystrokes) { } /** * Returns the Set of focus traversal keys for a given traversal operation * for this Component. (See * setFocusTraversalKeys for a full description of each key.) *

* If a Set of traversal keys has not been explicitly defined for this * Component, then this Component's parent's Set is returned. If no Set * has been explicitly defined for any of this Component's ancestors, then * the current KeyboardFocusManager's default Set is returned. * * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS * @return the Set of AWTKeyStrokes for the specified operation. The Set * will be unmodifiable, and may be empty. null will never be * returned. * @see #setFocusTraversalKeys * @see KeyboardFocusManager#FORWARD_TRAVERSAL_KEYS * @see KeyboardFocusManager#BACKWARD_TRAVERSAL_KEYS * @see KeyboardFocusManager#UP_CYCLE_TRAVERSAL_KEYS * @throws IllegalArgumentException if id is not one of * KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS * @since 1.4 */ public Set getFocusTraversalKeys(int id) { return null;} /** * Returns whether the Set of focus traversal keys for the given focus * traversal operation has been explicitly defined for this Component. If * this method returns false, this Component is inheriting the * Set from an ancestor, or from the current KeyboardFocusManager. * * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS * @return true if the the Set of focus traversal keys for the * given focus traversal operation has been explicitly defined for * this Component; false otherwise. * @throws IllegalArgumentException if id is not one of * KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, * KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or * KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS * @since 1.4 */ public boolean areFocusTraversalKeysSet(int id) { return false; } /** * Sets whether focus traversal keys are enabled for this Component. * Components for which focus traversal keys are disabled receive key * events for focus traversal keys. Components for which focus traversal * keys are enabled do not see these events; instead, the events are * automatically converted to traversal operations. * * @param focusTraversalKeysEnabled whether focus traversal keys are * enabled for this Component * @see #getFocusTraversalKeysEnabled * @see #setFocusTraversalKeys * @see #getFocusTraversalKeys * @since 1.4 * @beaninfo * bound: true */ public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled) { } /** * Returns whether focus traversal keys are enabled for this Component. * Components for which focus traversal keys are disabled receive key * events for focus traversal keys. Components for which focus traversal * keys are enabled do not see these events; instead, the events are * automatically converted to traversal operations. * * @return whether focus traversal keys are enabled for this Component * @see #setFocusTraversalKeysEnabled * @see #setFocusTraversalKeys * @see #getFocusTraversalKeys * @since 1.4 */ public boolean getFocusTraversalKeysEnabled() { return false; } /** * Requests that this Component get the input focus, and that this * Component's top-level ancestor become the focused Window. This component * must be displayable, visible, and focusable for the request to be * granted. Every effort will be made to honor the request; however, in * some cases it may be impossible to do so. Developers must never assume * that this Component is the focus owner until this Component receives a * FOCUS_GAINED event. If this request is denied because this Component's * top-level Window cannot become the focused Window, the request will be * remembered and will be granted when the Window is later focused by the * user. *

* This method cannot be used to set the focus owner to no Component at * all. Use KeyboardFocusManager.clearGlobalFocusOwner() * instead. *

* Because the focus behavior of this method is platform-dependent, * developers are strongly encouraged to use * requestFocusInWindow when possible. * * @see #requestFocusInWindow * @see java.awt.event.FocusEvent * @see #addFocusListener * @see #isFocusable * @see #isDisplayable * @see KeyboardFocusManager#clearGlobalFocusOwner * @since JDK1.0 */ public void requestFocus() { } /** * Requests that this Component get the input focus, and that this * Component's top-level ancestor become the focused Window. This component * must be displayable, visible, and focusable for the request to be * granted. Every effort will be made to honor the request; however, in * some cases it may be impossible to do so. Developers must never assume * that this Component is the focus owner until this Component receives a * FOCUS_GAINED event. If this request is denied because this Component's * top-level Window cannot become the focused Window, the request will be * remembered and will be granted when the Window is later focused by the * user. *

* This method returns a boolean value. If false is returned, * the request is guaranteed to fail. If true is * returned, the request will succeed unless it is vetoed, or an * extraordinary event, such as disposal of the Component's peer, occurs * before the request can be granted by the native windowing system. Again, * while a return value of true indicates that the request is * likely to succeed, developers must never assume that this Component is * the focus owner until this Component receives a FOCUS_GAINED event. *

* This method cannot be used to set the focus owner to no Component at * all. Use KeyboardFocusManager.clearGlobalFocusOwner() * instead. *

* Because the focus behavior of this method is platform-dependent, * developers are strongly encouraged to use * requestFocusInWindow when possible. *

* Every effort will be made to ensure that FocusEvents generated as a * result of this request will have the specified temporary value. However, * because specifying an arbitrary temporary state may not be implementable * on all native windowing systems, correct behavior for this method can be * guaranteed only for lightweight Components. This method is not intended * for general use, but exists instead as a hook for lightweight Component * libraries, such as Swing. * * @return false if the focus change request is guaranteed to * fail; true if it is likely to succeed * @see java.awt.event.FocusEvent * @see #addFocusListener * @see #isFocusable * @see #isDisplayable * @see KeyboardFocusManager#clearGlobalFocusOwner * @since 1.4 */ protected boolean requestFocus(boolean temporary) { return false; } /** * Requests that this Component get the input focus, if this Component's * top-level ancestor is already the focused Window. This component must be * displayable, visible, and focusable for the request to be granted. Every * effort will be made to honor the request; however, in some cases it may * be impossible to do so. Developers must never assume that this Component * is the focus owner until this Component receives a FOCUS_GAINED event. *

* This method returns a boolean value. If false is returned, * the request is guaranteed to fail. If true is * returned, the request will succeed unless it is vetoed, or an * extraordinary event, such as disposal of the Component's peer, occurs * before the request can be granted by the native windowing system. Again, * while a return value of true indicates that the request is * likely to succeed, developers must never assume that this Component is * the focus owner until this Component receives a FOCUS_GAINED event. *

* This method cannot be used to set the focus owner to no Component at * all. Use KeyboardFocusManager.clearGlobalFocusOwner() * instead. *

* The focus behavior of this method can be implemented uniformly across * platforms, and thus developers are strongly encouraged to use this * method over requestFocus when possible. Code which relies * on requestFocus may exhibit different focus behavior on * different platforms. * * @return false if the focus change request is guaranteed to * fail; true if it is likely to succeed * @see #requestFocus * @see java.awt.event.FocusEvent * @see #addFocusListener * @see #isFocusable * @see #isDisplayable * @see KeyboardFocusManager#clearGlobalFocusOwner * @since 1.4 */ public boolean requestFocusInWindow() { return false; } /** * Requests that this Component get the input focus, if this Component's * top-level ancestor is already the focused Window. This component must be * displayable, visible, and focusable for the request to be granted. Every * effort will be made to honor the request; however, in some cases it may * be impossible to do so. Developers must never assume that this Component * is the focus owner until this Component receives a FOCUS_GAINED event. *

* This method returns a boolean value. If false is returned, * the request is guaranteed to fail. If true is * returned, the request will succeed unless it is vetoed, or an * extraordinary event, such as disposal of the Component's peer, occurs * before the request can be granted by the native windowing system. Again, * while a return value of true indicates that the request is * likely to succeed, developers must never assume that this Component is * the focus owner until this Component receives a FOCUS_GAINED event. *

* This method cannot be used to set the focus owner to no Component at * all. Use KeyboardFocusManager.clearGlobalFocusOwner() * instead. *

* The focus behavior of this method can be implemented uniformly across * platforms, and thus developers are strongly encouraged to use this * method over requestFocus when possible. Code which relies * on requestFocus may exhibit different focus behavior on * different platforms. *

* Every effort will be made to ensure that FocusEvents generated as a * result of this request will have the specified temporary value. However, * because specifying an arbitrary temporary state may not be implementable * on all native windowing systems, correct behavior for this method can be * guaranteed only for lightweight Components. This method is not intended * for general use, but exists instead as a hook for lightweight Component * libraries, such as Swing. * * @return false if the focus change request is guaranteed to * fail; true if it is likely to succeed * @see #requestFocus * @see java.awt.event.FocusEvent * @see #addFocusListener * @see #isFocusable * @see #isDisplayable * @see KeyboardFocusManager#clearGlobalFocusOwner * @since 1.4 */ protected boolean requestFocusInWindow(boolean temporary) { return false; } /** * Transfers the focus to the next component, as though this Component were * the focus owner. * @see #requestFocus() * @since JDK1.1 */ public void transferFocus() { } /** * Returns the Container which is the focus cycle root of this Component's * focus traversal cycle. Each focus traversal cycle has only a single * focus cycle root and each Component which is not a Container belongs to * only a single focus traversal cycle. Containers which are focus cycle * roots belong to two cycles: one rooted at the Container itself, and one * rooted at the Container's nearest focus-cycle-root ancestor. For such * Containers, this method will return the Container's nearest focus-cycle- * root ancestor. * * @return this Component's nearest focus-cycle-root ancestor * @see Container#isFocusCycleRoot() * @since 1.4 */ public Container getFocusCycleRootAncestor() { return null;} /** * Returns whether the specified Container is the focus cycle root of this * Component's focus traversal cycle. Each focus traversal cycle has only * a single focus cycle root and each Component which is not a Container * belongs to only a single focus traversal cycle. * * @param container the Container to be tested * @return true if the specified Container is a focus-cycle- * root of this Component; false otherwise * @see Container#isFocusCycleRoot() * @since 1.4 */ public boolean isFocusCycleRoot(Container container) { return false; } /** * @deprecated As of JDK version 1.1, * replaced by transferFocus(). */ // public void nextFocus() { } /** * Transfers the focus to the previous component, as though this Component * were the focus owner. * @see #requestFocus() * @since 1.4 */ public void transferFocusBackward() { } /** * Transfers the focus up one focus traversal cycle. Typically, the focus * owner is set to this Component's focus cycle root, and the current focus * cycle root is set to the new focus owner's focus cycle root. If, * however, this Component's focus cycle root is a Window, then the focus * owner is set to the focus cycle root's default Component to focus, and * the current focus cycle root is unchanged. * * @see #requestFocus() * @see Container#isFocusCycleRoot() * @see Container#setFocusCycleRoot(boolean) * @since 1.4 */ public void transferFocusUpCycle() { } /** * Returns true if this Component is the * focus owner. This method is obsolete, and has been replaced by * isFocusOwner(). * * @return true if this Component is the * focus owner; false otherwise * @since 1.2 */ public boolean hasFocus() { return false; } /** * Returns true if this Component is the * focus owner. * * @return true if this Component is the * focus owner; false otherwise * @since 1.4 */ public boolean isFocusOwner() { return false; } // /** // * Adds the specified popup menu to the component. // * @param popup the popup menu to be added to the component. // * @see #remove(MenuComponent) // * @since JDK1.1 // */ // public synchronized void add(PopupMenu popup) { } // // /** // * Removes the specified popup menu from the component. // * @param popup the popup menu to be removed // * @see #add(PopupMenu) // * @since JDK1.1 // */ // public synchronized void remove(MenuComponent popup) { } /** * Returns a string representing the state of this component. This * method is intended to be used only for debugging purposes, and the * content and format of the returned string may vary between * implementations. The returned string may be empty but may not be * null. * * @return a string representation of this component's state * @since JDK1.0 */ protected String paramString() {return null; } /** * Returns a string representation of this component and its values. * @return a string representation of this component * @since JDK1.0 */ public String toString() { return null;} /** * Prints a listing of this component to the standard system output * stream System.out. * @see java.lang.System#out * @since JDK1.0 */ public void list() { } /** * Prints a listing of this component to the specified output * stream. * @param out a print stream * @since JDK1.0 */ public void list(PrintStream out) { } /** * Prints out a list, starting at the specified indentation, to the * specified print stream. * @param out a print stream * @param indent number of spaces to indent * @see java.io.PrintStream#println(java.lang.Object) * @since JDK1.0 */ public void list(PrintStream out, int indent) { } /** * Prints a listing to the specified print writer. * @param out the print writer to print to * @since JDK1.1 */ public void list(PrintWriter out) { } /** * Prints out a list, starting at the specified indentation, to * the specified print writer. * @param out the print writer to print to * @param indent the number of spaces to indent * @see java.io.PrintStream#println(java.lang.Object) * @since JDK1.1 */ public void list(PrintWriter out, int indent) { } // PBP/PP 6216188 /** * Adds a PropertyChangeListener to the listener list. The listener is * registered for all bound properties of this class, including the * following: *

    *
  • this Component's font ("font")
  • *
  • this Component's background color ("background")
  • *
  • this Component's foreground color ("foreground")
  • *
  • this Component's focusability ("focusable")
  • *
  • this Component's focus traversal keys enabled state * ("focusTraversalKeysEnabled")
  • *
  • this Component's Set of FORWARD_TRAVERSAL_KEYS * ("forwardFocusTraversalKeys")
  • *
  • this Component's Set of BACKWARD_TRAVERSAL_KEYS * ("backwardFocusTraversalKeys")
  • *
  • this Component's Set of UP_CYCLE_TRAVERSAL_KEYS * ("upCycleFocusTraversalKeys")
  • *
* Note that if this Component is inheriting a bound property, then no * event will be fired in response to a change in the inherited property. *

* If listener is null, no exception is thrown and no action is performed. * * @param listener the PropertyChangeListener to be added * * @see #removePropertyChangeListener * @see #getPropertyChangeListeners * */ public synchronized void addPropertyChangeListener(PropertyChangeListener listener) { } // PBP/PP 6216188 /** * Removes a PropertyChangeListener from the listener list. This method * should be used to remove PropertyChangeListeners that were registered * for all bound properties of this class. *

* If listener is null, no exception is thrown and no action is performed. * * @param listener the PropertyChangeListener to be removed * * @see #addPropertyChangeListener * @see #getPropertyChangeListeners * */ public synchronized void removePropertyChangeListener(PropertyChangeListener listener) { } // // PBP/PP 6216188 /** * Returns an array of all the property change listeners * registered on this component. * * @return all of this component's PropertyChangeListeners * or an empty array if no property change * listeners are currently registered * * @see #addPropertyChangeListener * @see #removePropertyChangeListener * * @see java.beans.PropertyChangeSupport#getPropertyChangeListeners * @since 1.4 */ public synchronized PropertyChangeListener[] getPropertyChangeListeners() { return null; } // // /** // * Adds a PropertyChangeListener to the listener list for a specific // * property. The specified property may be user-defined, or one of the // * following: // *

    // *
  • this Component's font ("font")
  • // *
  • this Component's background color ("background")
  • // *
  • this Component's foreground color ("foreground")
  • // *
  • this Component's focusability ("focusable")
  • // *
  • this Component's focus traversal keys enabled state // * ("focusTraversalKeysEnabled")
  • // *
  • this Component's Set of FORWARD_TRAVERSAL_KEYS // * ("forwardFocusTraversalKeys")
  • // *
  • this Component's Set of BACKWARD_TRAVERSAL_KEYS // * ("backwardFocusTraversalKeys")
  • // *
  • this Component's Set of UP_CYCLE_TRAVERSAL_KEYS // * ("upCycleFocusTraversalKeys")
  • // *
// * Note that if this Component is inheriting a bound property, then no // * event will be fired in response to a change in the inherited property. // *

// * If listener is null, no exception is thrown and no action is performed. // * // * @param propertyName one of the property names listed above // * @param listener the PropertyChangeListener to be added // * // * @see #removePropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener) // * @see #getPropertyChangeListeners(java.lang.String) // * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener) // */ // public synchronized void addPropertyChangeListener(String propertyName, // PropertyChangeListener listener) // { } // // /** // * Removes a PropertyChangeListener from the listener list for a specific // * property. This method should be used to remove PropertyChangeListeners // * that were registered for a specific bound property. // *

// * If listener is null, no exception is thrown and no action is performed. // * // * @param propertyName a valid property name // * @param listener the PropertyChangeListener to be removed // * // * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener) // * @see #getPropertyChangeListeners(java.lang.String) // * @see #removePropertyChangeListener(java.beans.PropertyChangeListener) // */ // public synchronized void removePropertyChangeListener(String propertyName, // PropertyChangeListener listener) // { } // // /** // * Returns an array of all the listeners which have been associated // * with the named property. // * // * @return all of the PropertyChangeListeners associated with // * the named property or an empty array if no listeners have // * been added // * // * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener) // * @see #removePropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener) // * @see #getPropertyChangeListeners // * @since 1.4 // */ // public synchronized PropertyChangeListener[] // getPropertyChangeListeners(String propertyName) // { } // /** * Support for reporting bound property changes for Object properties. * This method can be called when a bound property has changed and it will * send the appropriate PropertyChangeEvent to any registered * PropertyChangeListeners. * * @param propertyName the property whose value has changed * @param oldValue the property's previous value * @param newValue the property's new value */ protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) { } // /** // * Sets the language-sensitive orientation that is to be used to order // * the elements or text within this component. Language-sensitive // * LayoutManager and Component // * subclasses will use this property to // * determine how to lay out and draw components. // *

// * At construction time, a component's orientation is set to // * ComponentOrientation.UNKNOWN, // * indicating that it has not been specified // * explicitly. The UNKNOWN orientation behaves the same as // * ComponentOrientation.LEFT_TO_RIGHT. // *

// * To set the orientation of a single component, use this method. // * To set the orientation of an entire component // * hierarchy, use // * {@link #applyComponentOrientation applyComponentOrientation}. // * // * @see ComponentOrientation // * // * @author Laura Werner, IBM // * @beaninfo // * bound: true // */ // public void setComponentOrientation(ComponentOrientation o) { } // // /** // * Retrieves the language-sensitive orientation that is to be used to order // * the elements or text within this component. LayoutManager // * and Component // * subclasses that wish to respect orientation should call this method to // * get the component's orientation before performing layout or drawing. // * // * @see ComponentOrientation // * // * @author Laura Werner, IBM // */ // public ComponentOrientation getComponentOrientation() { } // // /** // * Sets the ComponentOrientation property of this component // * and all components contained within it. // * // * @param orientation the new component orientation of this component and // * the components contained within it. // * @exception NullPointerException if orientation is null. // * @see #setComponentOrientation // * @see #getComponentOrientation // * @since 1.4 // */ // public void applyComponentOrientation(ComponentOrientation orientation) { } // // /** // * Gets the AccessibleContext associated // * with this Component. // * The method implemented by this base // * class returns null. Classes that extend Component // * should implement this method to return the // * AccessibleContext associated with the subclass. // * // * // * @return the AccessibleContext of this // * Component // */ // public AccessibleContext getAccessibleContext() { } // /** * Reads the ObjectInputStream and if it isn't * null adds a listener to receive a variety * of events fired by the component. * Unrecognized keys or values will be ignored. * * @param s the ObjectInputStream to read * @see #writeObject(ObjectOutputStream) */ private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException { } // PBP/PP 6203742 & 6213235 /** * Writes default serializable fields to stream. Writes * a variety of serializable listeners as optional data. * The non-serializable listeners are detected and * no attempt is made to serialize them. * * @param s the ObjectOutputStream to write * @serialData null terminated sequence of * 0 or more pairs; the pair consists of a String * and an Object; the String indicates * the type of object and is one of the following (as of 1.4): * componentListenerK indicating an * ComponentListener object; * focusListenerK indicating an * FocusListener object; * keyListenerK indicating an * KeyListener object; * mouseListenerK indicating an * MouseListener object; * mouseMotionListenerK indicating an * MouseMotionListener object; * inputListenerK indicating an * InputListener object; * * * mouseWheelListenerK indicating an * MouseWheelListener object * * * @see AWTEventMulticaster#save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) * @see #componentListenerK * @see #focusListenerK * @see #keyListenerK * @see #mouseListenerK * @see #mouseMotionListenerK * @see #inputListenerK * * * @see #mouseWheelListenerK * @see #readObject(ObjectInputStream) */ private void writeObject(ObjectOutputStream s) throws IOException { } // /** // * Inner class for flipping buffers on a component. That component must // * be a Canvas or Window. // * @see Canvas // * @see Window // * @see java.awt.image.BufferStrategy // * @author Michael Martak // * @since 1.4 // */ // protected class FlipBufferStrategy extends BufferStrategy // { // /** // * The number of buffers // */ // protected int numBuffers; // // // /** // * The buffering capabilities // */ // protected BufferCapabilities caps; // // // /** // * The drawing buffer // */ // protected Image drawBuffer; // // // /** // * The drawing buffer as a volatile image // */ // protected VolatileImage drawVBuffer; // // // /** // * Whether or not the drawing buffer has been recently restored from // * a lost state. // */ // protected boolean validatedContents; // // // /** // * Creates a new flipping buffer strategy for this component. // * The component must be a Canvas or Window. // * @see Canvas // * @see Window // * @param numBuffers the number of buffers // * @param caps the capabilities of the buffers // * @exception AWTException if the capabilities supplied could not be // * supported or met // * @exception ClassCastException if the component is not a canvas or // * window. // */ // protected FlipBufferStrategy(int numBuffers, BufferCapabilities caps) // throws AWTException // { } // // // /** // * Creates one or more complex, flipping buffers with the given // * capabilities. // * @param numBuffers number of buffers to create; must be greater than // * one // * @param caps the capabilities of the buffers. // * BufferCapabilities.isPageFlipping must be // * true. // * @exception AWTException if the capabilities supplied could not be // * supported or met // * @exception IllegalStateException if the component has no peer // * @exception IllegalArgumentException if numBuffers is less than two, // * or if BufferCapabilities.isPageFlipping is not // * true. // * @see java.awt.BufferCapabilities#isPageFlipping() // */ // protected void createBuffers(int numBuffers, BufferCapabilities caps) // throws AWTException // { } // // // /** // * @return direct access to the back buffer, as an image. // * @exception IllegalStateException if the buffers have not yet // * been created // */ // protected Image getBackBuffer() { return null; } // // // /** // * Flipping moves the contents of the back buffer to the front buffer, // * either by copying or by moving the video pointer. // * @param flipAction an integer value describing the flipping action // * for the contents of the back buffer. This should be one of the // * values of the BufferCapabilities.FlipContents // * property. // * @exception IllegalStateException if the buffers have not yet // * been created // * @see java.awt.BufferCapabilities#getFlipContents() // */ // protected void flip(BufferCapabilities.FlipContents flipAction) { } // // // /** // * Destroys the buffers created through this object // */ // protected void destroyBuffers() { } // // // /** // * @return the buffering capabilities of this strategy // */ // public BufferCapabilities getCapabilities() { return null; } // // // /** // * @return the graphics on the drawing buffer. This method may not // * be synchronized for performance reasons; use of this method by multiple // * threads should be handled at the application level. Disposal of the // * graphics object must be handled by the application. // */ // public Graphics getDrawGraphics() { return null; } // // // /** // * Restore the drawing buffer if it has been lost // */ // protected void revalidate() { } // // // /** // * @return whether the drawing buffer was lost since the last call to // * getDrawGraphics // */ // public boolean contentsLost() { return false; } // // // /** // * @return whether the drawing buffer was recently restored from a lost // * state and reinitialized to the default background color (white) // */ // public boolean contentsRestored() { return false; } // // // /** // * Makes the next available buffer visible by either blitting or // * flipping. // */ // public void show() { } // } // /** // * Inner class for blitting offscreen surfaces to a component. // * // * @author Michael Martak // * @since 1.4 // */ // protected class BltBufferStrategy extends BufferStrategy // { // /** // * The buffering capabilities // */ // protected BufferCapabilities caps; // // // /** // * The back buffers // */ // protected VolatileImage[] backBuffers; // // // /** // * Whether or not the drawing buffer has been recently restored from // * a lost state. // */ // protected boolean validatedContents; // // // /** // * Size of the back buffers // */ // protected int width; // // // protected int height; // // // /** // * Creates a new blt buffer strategy around a component // * @param numBuffers the component to use as the front buffer // * @param caps the capabilities of the buffers // */ // protected BltBufferStrategy(int numBuffers, BufferCapabilities caps) { } // // // /** // * Creates the back buffers // */ // protected void createBackBuffers(int numBuffers) { } // // // /** // * @return the buffering capabilities of this strategy // */ // public BufferCapabilities getCapabilities() { return null; } // // // /** // * @return the draw graphics // */ // public Graphics getDrawGraphics() { return null; } // // // /** // * Makes the next available buffer visible. // */ // public void show() { } // // // /** // * Restore the drawing buffer if it has been lost // */ // protected void revalidate() { } // // // /** // * @return whether the drawing buffer was lost since the last call to // * getDrawGraphics // */ // public boolean contentsLost() { return false; } // // // /** // * @return whether the drawing buffer was recently restored from a lost // * state and reinitialized to the default background color (white) // */ // public boolean contentsRestored() { return false; } // } // // /** // * Inner class of Component used to provide default support for // * accessibility. This class is not meant to be used directly by // * application developers, but is instead meant only to be // * subclassed by component developers. // *

// * The class used to obtain the accessible role for this object. // */ // protected abstract class AccessibleAWTComponent extends AccessibleContext // implements Serializable, AccessibleComponent // { // protected ComponentListener accessibleAWTComponentHandler; // // protected FocusListener accessibleAWTFocusHandler; // // /** // * Though the class is abstract, this should be called by // * all sub-classes. // */ // protected AccessibleAWTComponent() { } // // /** // * Add a PropertyChangeListener to the listener list. // * // * @param listener The PropertyChangeListener to be added // */ // public void addPropertyChangeListener(PropertyChangeListener listener) // { } // // /** // * Remove a PropertyChangeListener from the listener list. // * This removes a PropertyChangeListener that was registered // * for all properties. // * // * @param listener The PropertyChangeListener to be removed // */ // public void removePropertyChangeListener(PropertyChangeListener // listener) // { } // // /** // * Gets the accessible name of this object. This should almost never // * return java.awt.Component.getName(), // * as that generally isn't a localized name, // * and doesn't have meaning for the user. If the // * object is fundamentally a text object (e.g. a menu item), the // * accessible name should be the text of the object (e.g. "save"). // * If the object has a tooltip, the tooltip text may also be an // * appropriate String to return. // * // * @return the localized name of the object -- can be // * null if this // * object does not have a name // * @see javax.accessibility.AccessibleContext#setAccessibleName // */ // public String getAccessibleName() { } // // /** // * Gets the accessible description of this object. This should be // * a concise, localized description of what this object is - what // * is its meaning to the user. If the object has a tooltip, the // * tooltip text may be an appropriate string to return, assuming // * it contains a concise description of the object (instead of just // * the name of the object - e.g. a "Save" icon on a toolbar that // * had "save" as the tooltip text shouldn't return the tooltip // * text as the description, but something like "Saves the current // * text document" instead). // * // * @return the localized description of the object -- can be // * null if this object does not have a description // * @see javax.accessibility.AccessibleContext#setAccessibleDescription // */ // public String getAccessibleDescription() { } // // /** // * Gets the role of this object. // * // * @return an instance of AccessibleRole // * describing the role of the object // * @see javax.accessibility.AccessibleRole // */ // public AccessibleRole getAccessibleRole() { } // // /** // * Gets the state of this object. // * // * @return an instance of AccessibleStateSet // * containing the current state set of the object // * @see javax.accessibility.AccessibleState // */ // public AccessibleStateSet getAccessibleStateSet() { } // // /** // * Gets the Accessible parent of this object. // * If the parent of this object implements Accessible, // * this method should simply return getParent. // * // * @return the Accessible parent of this // * object -- can be null if this // * object does not have an Accessible parent // */ // public Accessible getAccessibleParent() { } // // /** // * Gets the index of this object in its accessible parent. // * // * @return the index of this object in its parent; or -1 if this // * object does not have an accessible parent // * @see #getAccessibleParent // */ // public int getAccessibleIndexInParent() { } // // /** // * Returns the number of accessible children in the object. If all // * of the children of this object implement Accessible, // * then this method should return the number of children of this object. // * // * @return the number of accessible children in the object // */ // public int getAccessibleChildrenCount() { } // // /** // * Returns the nth Accessible child of the object. // * // * @param i zero-based index of child // * @return the nth Accessible child of the object // */ // public Accessible getAccessibleChild(int i) { } // // /** // * Returns the locale of this object. // * // * @return the locale of this object // */ // public Locale getLocale() { } // // /** // * Gets the AccessibleComponent associated // * with this object if one exists. // * Otherwise return null. // * // * @return the component // */ // public AccessibleComponent getAccessibleComponent() { } // // /** // * Gets the background color of this object. // * // * @return the background color, if supported, of the object; // * otherwise, null // */ // public Color getBackground() { } // // /** // * Sets the background color of this object. // * (For transparency, see isOpaque.) // * // * @param c the new Color for the background // * @see Component#isOpaque // */ // public void setBackground(Color c) { } // // /** // * Gets the foreground color of this object. // * // * @return the foreground color, if supported, of the object; // * otherwise, null // */ // public Color getForeground() { } // // /** // * Sets the foreground color of this object. // * // * @param c the new Color for the foreground // */ // public void setForeground(Color c) { } // // /** // * Gets the Cursor of this object. // * // * @return the Cursor, if supported, // * of the object; otherwise, null // */ // public Cursor getCursor() { } // // /** // * Sets the Cursor of this object. // * // * @param cursor the new Cursor for the object // */ // public void setCursor(Cursor cursor) { } // // /** // * Gets the Font of this object. // * // * @return the Font, if supported, // * for the object; otherwise, null // */ // public Font getFont() { } // // /** // * Sets the Font of this object. // * // * @param f the new Font for the object // */ // public void setFont(Font f) { } // // /** // * Gets the FontMetrics of this object. // * // * @param f the Font // * @return the FontMetrics, if supported, // * the object; otherwise, null // * @see #getFont // */ // public FontMetrics getFontMetrics(Font f) { } // // /** // * Determines if the object is enabled. // * // * @return true if object is enabled; otherwise, false // */ // public boolean isEnabled() { } // // /** // * Sets the enabled state of the object. // * // * @param b if true, enables this object; otherwise, disables it // */ // public void setEnabled(boolean b) { } // // /** // * Determines if the object is visible. Note: this means that the // * object intends to be visible; however, it may not in fact be // * showing on the screen because one of the objects that this object // * is contained by is not visible. To determine if an object is // * showing on the screen, use isShowing. // * // * @return true if object is visible; otherwise, false // */ // public boolean isVisible() { } // // /** // * Sets the visible state of the object. // * // * @param b if true, shows this object; otherwise, hides it // */ // public void setVisible(boolean b) { } // // /** // * Determines if the object is showing. This is determined by checking // * the visibility of the object and ancestors of the object. Note: // * this will return true even if the object is obscured by another // * (for example, it happens to be underneath a menu that was pulled // * down). // * // * @return true if object is showing; otherwise, false // */ // public boolean isShowing() { } // // /** // * Checks whether the specified point is within this object's bounds, // * where the point's x and y coordinates are defined to be relative to // * the coordinate system of the object. // * // * @param p the Point relative to the // * coordinate system of the object // * @return true if object contains Point; otherwise false // */ // public boolean contains(Point p) { } // // /** // * Returns the location of the object on the screen. // * // * @return location of object on screen -- can be // * null if this object is not on the screen // */ // public Point getLocationOnScreen() { } // // /** // * Gets the location of the object relative to the parent in the form // * of a point specifying the object's top-left corner in the screen's // * coordinate space. // * // * @return an instance of Point representing the top-left corner of // * the object's bounds in the coordinate space of the screen; // * null if this object or its parent are not on the screen // */ // public Point getLocation() { } // // /** // * Sets the location of the object relative to the parent. // * @param p the coordinates of the object // */ // public void setLocation(Point p) { } // // /** // * Gets the bounds of this object in the form of a Rectangle object. // * The bounds specify this object's width, height, and location // * relative to its parent. // * // * @return a rectangle indicating this component's bounds; // * null if this object is not on the screen // */ // public Rectangle getBounds() { } // // /** // * Sets the bounds of this object in the form of a // * Rectangle object. // * The bounds specify this object's width, height, and location // * relative to its parent. // * // * @param r a rectangle indicating this component's bounds // */ // public void setBounds(Rectangle r) { } // // /** // * Returns the size of this object in the form of a // * Dimension object. The height field of the // * Dimension object contains this objects's // * height, and the width field of the Dimension // * object contains this object's width. // * // * @return a Dimension object that indicates // * the size of this component; null if // * this object is not on the screen // */ // public Dimension getSize() { } // // /** // * Resizes this object so that it has width width and height. // * // * @param d - the dimension specifying the new size of the object // */ // public void setSize(Dimension d) { } // // /** // * Returns the Accessible child, // * if one exists, contained at the local // * coordinate Point. Otherwise returns // * null. // * // * @param p the point defining the top-left corner of // * the Accessible, given in the // * coordinate space of the object's parent // * @return the Accessible, if it exists, // * at the specified location; else null // */ // public Accessible getAccessibleAt(Point p) { } // // /** // * Returns whether this object can accept focus or not. // * // * @return true if object can accept focus; otherwise false // */ // public boolean isFocusTraversable() { } // // /** // * Requests focus for this object. // */ // public void requestFocus() { } // // /** // * Adds the specified focus listener to receive focus events from this // * component. // * // * @param l the focus listener // */ // public void addFocusListener(FocusListener l) { } // // /** // * Removes the specified focus listener so it no longer receives focus // * events from this component. // * // * @param l the focus listener // */ // public void removeFocusListener(FocusListener l) { } // // /** // * Fire PropertyChange listener, if one is registered, // * when shown/hidden.. // */ // protected class AccessibleAWTComponentHandler // implements ComponentListener // { // // protected AccessibleAWTComponentHandler() { } // // public void componentHidden(ComponentEvent e) { } // // public void componentShown(ComponentEvent e) { } // // public void componentMoved(ComponentEvent e) { } // // public void componentResized(ComponentEvent e) { } // } // // /** // * Fire PropertyChange listener, if one is registered, // * when focus events happen // */ // protected class AccessibleAWTFocusHandler implements FocusListener // { // // protected AccessibleAWTFocusHandler() { } // // public void focusGained(FocusEvent event) { } // // public void focusLost(FocusEvent event) { } // } // } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy