| java.lang.Object java.awt.Component java.awt.Container net.xoetrope.xui.XPage net.xoetrope.swing.XDialog
All known Subclasses: net.xoetrope.swing.XMessageBox,
XDialog | public class XDialog extends XPage implements XContentPane(Code) | | Provides support for Popups. This class extends XPage giving
a blank panel on which you can create custom dialogs. The dialog can be shown
as a modal dialog which will block execution of the client code till the
dialog is dismissed.
Copyright: Copyright (c) Xoetrope Ltd., 1998-2003
License: see license.txt
version: 1.0 |
Constructor Summary | |
public | XDialog() Creates a new dialog and adds a content panel to the page. | public | XDialog(boolean modal, int pad) Creates a new dialog and adds a content panel to the page. |
CANCEL_CLICKED | final public static int CANCEL_CLICKED(Code) | | |
CLOSE_CLICKED | final public static int CLOSE_CLICKED(Code) | | |
DEFAULT_PADDING | final public static int DEFAULT_PADDING(Code) | | |
NOTHING_CLICKED_YET | final public static int NOTHING_CLICKED_YET(Code) | | |
OK_CLICKED | final public static int OK_CLICKED(Code) | | |
QAvailable | boolean QAvailable(Code) | | |
bFireEmptyEvent | final static boolean bFireEmptyEvent(Code) | | |
lastReturnValue | protected static int lastReturnValue(Code) | | |
padding | protected int padding(Code) | | |
returnValue | protected int returnValue(Code) | | |
saveOnClose | protected boolean saveOnClose(Code) | | |
trueField | final public static boolean trueField(Code) | | |
XDialog | public XDialog()(Code) | | Creates a new dialog and adds a content panel to the page. A handler is also
set so that the dialog will be dismissed when the escape key is pressed.
|
XDialog | public XDialog(boolean modal, int pad)(Code) | | Creates a new dialog and adds a content panel to the page. A handler is also
set so that the dialog will be dismissed when the escape key is pressed.
|
cancelDlg | public void cancelDlg()(Code) | | Dismiss the dialog and discard teh data.
|
closeDlg | public void closeDlg()(Code) | | Close the dialog and restore focus
|
getFocusComponent | protected Component getFocusComponent(Container cont)(Code) | | Gets the component that owns the focus.
Parameters: cont - the container to be checked for focus. the focus component or null if the container does not have acomponent that owns the input focus. |
getLastReturnValue | public static int getLastReturnValue()(Code) | | Get the return value of the most recently dismissed dialog
a value indicating the status or the button that was used to dismiss the dialog |
getReturnObject | public Object getReturnObject()(Code) | | Provides access to an object representing the state of the dialog when it
was closed. It is the responsibility of the subclass to set this value
when it closes.
the return object |
pack | public void pack()(Code) | | Size the dialog to hold the largest components (i.e. children of the content panel)
|
pageCreated | public void pageCreated()(Code) | | Overload the XPage XCreated event and set the caption of the dialog from
the title attribute. Call super if overloaded.
|
setCaption | public void setCaption(String c)(Code) | | Set the dialog caption/title
Parameters: c - |
setModal | public void setModal(boolean modal)(Code) | | Set the dialog to be modal or non-modal
Parameters: modal - true for a modal dialog |
setSaveOnClose | public void setSaveOnClose(boolean save)(Code) | | Set the save on close option
Parameters: save - true to save the data when the dialog is closed or dismissed, false todiscard the data. |
setSize | public void setSize(int width, int height)(Code) | | Set the size of the dialog and centres it within the parent.
Parameters: width - The new width Parameters: height - The new height |
setUseNativeHeaders | public void setUseNativeHeaders(boolean bh)(Code) | | Set the dialog to use the native platform decorations (title bar and borders).
Parameters: bh - true to use native decorations. |
showDialog | public int showDialog(Container owner, String title, Point location)(Code) | | Shows the dialog. This method calls showDialog( this ) after setting the
title, location and after setting the dialog to a size just large enough to
display all its content
Parameters: owner - The container to which the dialog is added. Parameters: title - The dialog title/caption Parameters: location - The location on screen to show the dialog the returnValue |
showDialog | public void showDialog(Component cbParent, String cb)(Code) | | Shows the dialog. For modal dialog the showDialog method blocks till the
dialog is dismissed or hidden. This method provides an alternative that
does not block execution of the calling thread but instead calls back a
method specified as an argument once the dialog has been dismissed.
In some VMs such as the Microsoft VM it is not possible to gain access to
the EventQueue so as to implement blocking unless the code is loaded from a
signed CAB file. If this situtaion occurs an exception is thrown and a
non-blocking strategy is used.
When the dialog is shown it will attempt to gain focus and upon dismissal
focus will be returned to the component that had focus prior to display of
the dialog. A special case occurs when the dialog is displayed in response
to a focus event handler. The focus event will be processed as normal,
allowing transfer of focus but focus handler invocations related to the
showing and hiding of the dialog will be suppressed.
Parameters: cbParent - The parent/owner for purposes of a callback. Parameters: cb - The name of a callback method in the parent (or null) to be invoked when the dialog is dismissed. the returnValue |
showDialog | public int showDialog(Container owner)(Code) | | Shows the dialog. For modal dialog this method blocks till the dialog is
dismissed or hidden. A subclass can set the returnValue member to indicate
the status of the dialog upon dismissal.
When the dialog is shown it will attempt to gain focus and upon dismissal
focus will be returned to the component that had focus prior to display of
the dialog. A special case occurs when the dialog is displayed in response
to a focus event handler. The focus event will be processed as normal,
allowing transfer of focus but focus handler invocations related to the
showing and hiding of the dialog will be suppressed.
Parameters: owner - The container to which the dialog is added. the returnValue |
wasMouseClicked | public boolean wasMouseClicked()(Code) | | A utility method used to determine if the last event corrseponds to a mouse
click. The notion of a click is extended by assuming the a mouse press and
release within a single component constitutes a click even if not at the
same coordinate. A MouseEvent.MOUSE_CLICKED is only triggered when the press
and release are at the same location and this is often inadequate for end-user
interaction.
true if the mouse was clicked |
Methods inherited from net.xoetrope.xui.XPage | public int accumulateMessages(boolean start, int level)(Code)(Java Doc) public void addActionHandler(Component comp, String methodName)(Code)(Java Doc) public void addBinding(XDataBinding b)(Code)(Java Doc) public void addFocusHandler(Component comp, String methodName)(Code)(Java Doc) public void addHandler(Component comp, long eventType, String methodName) throws Exception(Code)(Java Doc) public void addItemHandler(Component comp, String methodName)(Code)(Java Doc) public void addKeyHandler(Component comp, String methodName)(Code)(Java Doc) public void addListener(Object comp, String listenerName, String argType)(Code)(Java Doc) public void addMenuHandler(Object menuItem, String methodName)(Code)(Java Doc) public void addMouseHandler(Component comp, String methodName)(Code)(Java Doc) public void addMouseMotionHandler(Component comp, String methodName)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addTextHandler(Component comp, String methodName)(Code)(Java Doc) public XValidator addValidation(Component comp, String validationName, String method, int mask)(Code)(Java Doc) public XValidator addValidation(Component comp, String validationName, String method)(Code)(Java Doc) public XValidator addValidation(Component comp, String validationName)(Code)(Java Doc) public int checkValidations()(Code)(Java Doc) public void clearValidations()(Code)(Java Doc) public Object evaluateAttribute(String attribValue)(Code)(Java Doc) public String evaluatePath(String path)(Code)(Java Doc) public Component findComponent(String name)(Code)(Java Doc) public Component findComponent(Container container, String name)(Code)(Java Doc) public Object getAttribute(String attribName)(Code)(Java Doc) public Object getAttribute(String attribName, String compName)(Code)(Java Doc) public XDataBinding getBinding(Component targetComp)(Code)(Java Doc) public XDataBinding getBinding(String targetPath)(Code)(Java Doc) public Vector getBindings()(Code)(Java Doc) public XComponentFactory getComponentFactory()(Code)(Java Doc) public String getComponentName(Component comp)(Code)(Java Doc) public AWTEvent getCurrentEvent()(Code)(Java Doc) public Object getEventAttribute(Component c, String attribName)(Code)(Java Doc) public XEventHandler getEventHandler()(Code)(Java Doc) public int getStatus()(Code)(Java Doc) public XValidationHandler getValidationHandler()(Code)(Java Doc) public boolean handleException(Component comp, Exception ex, XValidator validator)(Code)(Java Doc) public boolean isFocusChangeSuppressed()(Code)(Java Doc) public void pageActivated()(Code)(Java Doc) public void pageCreated()(Code)(Java Doc) public void pageDeactivated()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintSuper(Graphics g)(Code)(Java Doc) public void removeBinding(XDataBinding b)(Code)(Java Doc) public void saveBoundComponentValues()(Code)(Java Doc) public void setAttribute(String attribName, String compName, Object attribValue)(Code)(Java Doc) public void setClearPage(boolean value)(Code)(Java Doc) public void setComponentFactory(XStyleFactory factory)(Code)(Java Doc) public void setEventHandler(XEventHandler eh)(Code)(Java Doc) public void setExceptionHandler(XValidationExceptionHandler eh)(Code)(Java Doc) public void setStatus(int newStatus)(Code)(Java Doc) public void setValidationFactory(XValidationFactory vf)(Code)(Java Doc) public void setValidationFactory(String vf)(Code)(Java Doc) public void showComponents(Container container, boolean visible, int recursionLevel)(Code)(Java Doc) public void showHandCursor(Component comp)(Code)(Java Doc) public void showMessage(String title, String msg)(Code)(Java Doc) public void showMessage(Container parent, String title, String msg)(Code)(Java Doc) public String stripAttributeValues(String path)(Code)(Java Doc) public String translate(String key)(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void updateBindings()(Code)(Java Doc) public void updateBoundComponentValues()(Code)(Java Doc) public int validationHandler()(Code)(Java Doc) public boolean wasMouseClicked()(Code)(Java Doc) public boolean wasMouseDoubleClicked()(Code)(Java Doc) public boolean wasMouseRightClicked()(Code)(Java Doc)
|
Methods inherited from java.awt.Container | public Component add(Component comp)(Code)(Java Doc) public Component add(String name, Component comp)(Code)(Java Doc) public Component add(Component comp, int index)(Code)(Java Doc) public void add(Component comp, Object constraints)(Code)(Java Doc) public void add(Component comp, Object constraints, int index)(Code)(Java Doc) public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc) protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public int countComponents()(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public Component findComponentAt(int x, int y)(Code)(Java Doc) public Component findComponentAt(Point p)(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Component getComponent(int n)(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) public int getComponentZOrder(Component comp)(Code)(Java Doc) public Component[] getComponents()(Code)(Java Doc) public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public LayoutManager getLayout()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public Insets insets()(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isAncestorOf(Component c)(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc) public boolean isFocusTraversalPolicySet()(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printComponents(Graphics g)(Code)(Java Doc) protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void remove(Component comp)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setComponentZOrder(Component comp, int index)(Code)(Java Doc) public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc) final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setLayout(LayoutManager mgr)(Code)(Java Doc) public void transferFocusDownCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc) protected void validateTree()(Code)(Java Doc)
|
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|