Java Doc for FrameOperator.java in  » Testing » jemmy » org » netbeans » jemmy » operators » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » jemmy » org.netbeans.jemmy.operators 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.jemmy.operators.Operator
      org.netbeans.jemmy.operators.ComponentOperator
         org.netbeans.jemmy.operators.ContainerOperator
            org.netbeans.jemmy.operators.WindowOperator
               org.netbeans.jemmy.operators.FrameOperator

All known Subclasses:   org.netbeans.jemmy.operators.JFrameOperator,
FrameOperator
public class FrameOperator extends WindowOperator implements Outputable(Code)


Timeouts used:
FrameWaiter.WaitFrameTimeout - time to wait frame displayed
FrameWaiter.AfterFrameTimeout - time to sleep after frame has been dispayed
ComponentOperator.WaitStateTimeout - time to wait for text
.
See Also:   org.netbeans.jemmy.Timeouts
author:
   Alexandre Iline (alexandre.iline@sun.com)

Inner Class :public static class FrameFinder extends Finder
Inner Class :public static class FrameByTitleFinder implements ComponentChooser

Field Summary
final public static  StringIS_RESIZABLE_DPROP
     Identifier for a resizable property.
final public static  StringSTATE_DPROP
     Identifier for a state property.
final public static  StringSTATE_ICONIFIED_DPROP_VALUE
     Identifier for a "iconified state" state property value.
final public static  StringSTATE_NORMAL_DPROP_VALUE
     Identifier for a "normal state" state property value.
final public static  StringTITLE_DPROP
     Identifier for a title property.
 FrameDriverdriver
    
 TestOutoutput
    

Constructor Summary
public  FrameOperator(Frame w)
     Constructs a FrameOperator object.
public  FrameOperator(ComponentChooser chooser, int index, Operator env)
     Constructs a FrameOperator object.
public  FrameOperator(ComponentChooser chooser, int index)
     Constructs a FrameOperator object.
public  FrameOperator(ComponentChooser chooser)
     Constructs a FrameOperator object.
public  FrameOperator(String title, int index, Operator env)
     Constructor.
public  FrameOperator(String title, int index)
     Constructor.
public  FrameOperator(String title)
     Constructor.
public  FrameOperator(int index)
     Constructor.
public  FrameOperator()
     Constructor.

Method Summary
public  voidcopyEnvironment(Operator anotherOperator)
    
public  voiddeiconify()
     Deiconifies the frame.
public  voiddemaximize()
     Demaximizes the frame.
public  HashtablegetDump()
     Returns information about component.
public  ImagegetIconImage()
    
public  MenuBargetMenuBar()
    
public  TestOutgetOutput()
    
public  intgetState()
    
public  StringgetTitle()
    
public  voidiconify()
     Iconifies the frame.
public  booleanisResizable()
    
public  voidmaximize()
     Maximizes the frame.
public  voidsetIconImage(Image image)
    
public  voidsetMenuBar(MenuBar menuBar)
    
public  voidsetOutput(TestOut out)
    
public  voidsetResizable(boolean b)
    
public  voidsetState(int i)
    
public  voidsetTitle(String string)
    
protected static  FramewaitFrame(ComponentChooser chooser, int index, Timeouts timeouts, TestOut output)
     A method to be used from subclasses. Uses timeouts and output passed as parameters during the waiting.
Parameters:
  chooser - org.netbeans.jemmy.ComponentChooser implementation.
Parameters:
  index - Ordinal component index.
Parameters:
  timeouts - timeouts to be used during the waiting.
Parameters:
  output - an output to be used during the waiting.
public  voidwaitState(int state)
     Waits for the frame to have a specified state.
public  voidwaitTitle(String title)
     Waits for title.

Field Detail
IS_RESIZABLE_DPROP
final public static String IS_RESIZABLE_DPROP(Code)
Identifier for a resizable property.
See Also:   FrameOperator.getDump



STATE_DPROP
final public static String STATE_DPROP(Code)
Identifier for a state property.
See Also:   FrameOperator.getDump



STATE_ICONIFIED_DPROP_VALUE
final public static String STATE_ICONIFIED_DPROP_VALUE(Code)
Identifier for a "iconified state" state property value.
See Also:   FrameOperator.getDump



STATE_NORMAL_DPROP_VALUE
final public static String STATE_NORMAL_DPROP_VALUE(Code)
Identifier for a "normal state" state property value.
See Also:   FrameOperator.getDump



TITLE_DPROP
final public static String TITLE_DPROP(Code)
Identifier for a title property.
See Also:   FrameOperator.getDump



driver
FrameDriver driver(Code)



output
TestOut output(Code)




Constructor Detail
FrameOperator
public FrameOperator(Frame w)(Code)
Constructs a FrameOperator object.
Parameters:
  w - window



FrameOperator
public FrameOperator(ComponentChooser chooser, int index, Operator env)(Code)
Constructs a FrameOperator object.
Parameters:
  chooser - a component chooser specifying searching criteria.
Parameters:
  index - an index between appropriate ones.
Parameters:
  env - an operator to copy environment from.



FrameOperator
public FrameOperator(ComponentChooser chooser, int index)(Code)
Constructs a FrameOperator object.
Parameters:
  chooser - a component chooser specifying searching criteria.
Parameters:
  index - an index between appropriate ones.



FrameOperator
public FrameOperator(ComponentChooser chooser)(Code)
Constructs a FrameOperator object.
Parameters:
  chooser - a component chooser specifying searching criteria.



FrameOperator
public FrameOperator(String title, int index, Operator env)(Code)
Constructor. Waits for the frame with "title" subtitle. Constructor can be used in complicated cases when output or timeouts should differ from default.
Parameters:
  title - a window title
Parameters:
  index - Ordinal component index.
Parameters:
  env - an operator to copy environment from.
See Also:   ComponentOperator.isCaptionEqual(StringStringbooleanboolean)
throws:
  TimeoutExpiredException -



FrameOperator
public FrameOperator(String title, int index)(Code)
Constructor. Waits for the frame with "title" subtitle. Uses current timeouts and output values.
Parameters:
  title - a window title
Parameters:
  index - Ordinal component index.
See Also:   ComponentOperator.isCaptionEqual(StringStringbooleanboolean)
See Also:   JemmyProperties.getCurrentTimeouts
See Also:   JemmyProperties.getCurrentOutput
throws:
  TimeoutExpiredException -



FrameOperator
public FrameOperator(String title)(Code)
Constructor. Waits for the frame with "title" subtitle. Uses current timeouts and output values.
Parameters:
  title - a window title
See Also:   ComponentOperator.isCaptionEqual(StringStringbooleanboolean)
See Also:   JemmyProperties.getCurrentTimeouts
See Also:   JemmyProperties.getCurrentOutput
throws:
  TimeoutExpiredException -



FrameOperator
public FrameOperator(int index)(Code)
Constructor. Waits for the index'th frame. Uses current timeout and output for waiting and to init operator.
Parameters:
  index - Ordinal component index.
throws:
  TimeoutExpiredException -



FrameOperator
public FrameOperator()(Code)
Constructor. Waits for the first frame. Uses current timeout and output for waiting and to init operator.
throws:
  TimeoutExpiredException -




Method Detail
copyEnvironment
public void copyEnvironment(Operator anotherOperator)(Code)



deiconify
public void deiconify()(Code)
Deiconifies the frame.



demaximize
public void demaximize()(Code)
Demaximizes the frame.



getDump
public Hashtable getDump()(Code)
Returns information about component.



getIconImage
public Image getIconImage()(Code)
Maps Frame.getIconImage() through queue



getMenuBar
public MenuBar getMenuBar()(Code)
Maps Frame.getMenuBar() through queue



getOutput
public TestOut getOutput()(Code)



getState
public int getState()(Code)
Maps Frame.getState() through queue



getTitle
public String getTitle()(Code)
Maps Frame.getTitle() through queue



iconify
public void iconify()(Code)
Iconifies the frame.



isResizable
public boolean isResizable()(Code)
Maps Frame.isResizable() through queue



maximize
public void maximize()(Code)
Maximizes the frame.



setIconImage
public void setIconImage(Image image)(Code)
Maps Frame.setIconImage(Image) through queue



setMenuBar
public void setMenuBar(MenuBar menuBar)(Code)
Maps Frame.setMenuBar(MenuBar) through queue



setOutput
public void setOutput(TestOut out)(Code)



setResizable
public void setResizable(boolean b)(Code)
Maps Frame.setResizable(boolean) through queue



setState
public void setState(int i)(Code)
Maps Frame.setState(int) through queue



setTitle
public void setTitle(String string)(Code)
Maps Frame.setTitle(String) through queue



waitFrame
protected static Frame waitFrame(ComponentChooser chooser, int index, Timeouts timeouts, TestOut output)(Code)
A method to be used from subclasses. Uses timeouts and output passed as parameters during the waiting.
Parameters:
  chooser - org.netbeans.jemmy.ComponentChooser implementation.
Parameters:
  index - Ordinal component index.
Parameters:
  timeouts - timeouts to be used during the waiting.
Parameters:
  output - an output to be used during the waiting. Component instance or null if component was not found.
throws:
  TimeoutExpiredException -



waitState
public void waitState(int state)(Code)
Waits for the frame to have a specified state.
Parameters:
  state - a state for the frame to have.



waitTitle
public void waitTitle(String title)(Code)
Waits for title. Uses getComparator() comparator.
Parameters:
  title - Title to wait for.



Fields inherited from org.netbeans.jemmy.operators.WindowOperator
WindowDriver driver(Code)(Java Doc)
TestOut output(Code)(Java Doc)

Methods inherited from org.netbeans.jemmy.operators.WindowOperator
public void activate()(Code)(Java Doc)
public void addWindowListener(WindowListener windowListener)(Code)(Java Doc)
public void applyResourceBundle(String string)(Code)(Java Doc)
public void applyResourceBundle(ResourceBundle resourceBundle)(Code)(Java Doc)
public void close()(Code)(Java Doc)
public void copyEnvironment(Operator anotherOperator)(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
public Window findSubWindow(ComponentChooser chooser, int index)(Code)(Java Doc)
public Window findSubWindow(ComponentChooser chooser)(Code)(Java Doc)
public static Window findWindow(ComponentChooser chooser, int index)(Code)(Java Doc)
public static Window findWindow(ComponentChooser chooser)(Code)(Java Doc)
public static Window findWindow(Window owner, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Window findWindow(Window owner, ComponentChooser chooser)(Code)(Java Doc)
public Component getFocusOwner()(Code)(Java Doc)
public TestOut getOutput()(Code)(Java Doc)
public Window[] getOwnedWindows()(Code)(Java Doc)
public Window getOwner()(Code)(Java Doc)
public String getWarningString()(Code)(Java Doc)
public boolean isActive()(Code)(Java Doc)
public boolean isFocused()(Code)(Java Doc)
public void move(int x, int y)(Code)(Java Doc)
public void pack()(Code)(Java Doc)
public void removeWindowListener(WindowListener windowListener)(Code)(Java Doc)
public void resize(int width, int height)(Code)(Java Doc)
public void setOutput(TestOut out)(Code)(Java Doc)
public void toBack()(Code)(Java Doc)
public void toFront()(Code)(Java Doc)
public void waitClosed()(Code)(Java Doc)
public Window waitSubWindow(ComponentChooser chooser, int index)(Code)(Java Doc)
public Window waitSubWindow(ComponentChooser chooser)(Code)(Java Doc)
public static Window waitWindow(ComponentChooser chooser, int index)(Code)(Java Doc)
public static Window waitWindow(ComponentChooser chooser)(Code)(Java Doc)
public static Window waitWindow(Window owner, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Window waitWindow(Window owner, ComponentChooser chooser)(Code)(Java Doc)
protected static Window waitWindow(ComponentChooser chooser, int index, Timeouts timeouts, TestOut output)(Code)(Java Doc)
protected static Window waitWindow(WindowOperator owner, ComponentChooser chooser, int index)(Code)(Java Doc)
protected static Window waitWindow(Window owner, ComponentChooser chooser, int index, Timeouts timeouts, TestOut output)(Code)(Java Doc)

Methods inherited from org.netbeans.jemmy.operators.ContainerOperator
public Component add(Component component)(Code)(Java Doc)
public Component add(Component component, int i)(Code)(Java Doc)
public void add(Component component, Object object)(Code)(Java Doc)
public void add(Component component, Object object, int i)(Code)(Java Doc)
public Component add(String string, Component component)(Code)(Java Doc)
public void addContainerListener(ContainerListener containerListener)(Code)(Java Doc)
public ComponentOperator createSubOperator(ComponentChooser chooser, int index)(Code)(Java Doc)
public ComponentOperator createSubOperator(ComponentChooser chooser)(Code)(Java Doc)
public Component findComponentAt(int i, int i1)(Code)(Java Doc)
public Component findComponentAt(Point point)(Code)(Java Doc)
public static Container findContainer(Container cont, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Container findContainer(Container cont, ComponentChooser chooser)(Code)(Java Doc)
public static Container findContainer(Container cont, int index)(Code)(Java Doc)
public static Container findContainer(Container cont)(Code)(Java Doc)
public static Container findContainerUnder(Component comp, ComponentChooser chooser)(Code)(Java Doc)
public static Container findContainerUnder(Component comp)(Code)(Java Doc)
public Component findSubComponent(ComponentChooser chooser, int index)(Code)(Java Doc)
public Component findSubComponent(ComponentChooser chooser)(Code)(Java Doc)
public Component getComponent(int i)(Code)(Java Doc)
public int getComponentCount()(Code)(Java Doc)
public Component[] getComponents()(Code)(Java Doc)
public Insets getInsets()(Code)(Java Doc)
public LayoutManager getLayout()(Code)(Java Doc)
public TestOut getOutput()(Code)(Java Doc)
public Timeouts getTimeouts()(Code)(Java Doc)
public boolean isAncestorOf(Component component)(Code)(Java Doc)
public void paintComponents(Graphics graphics)(Code)(Java Doc)
public void printComponents(Graphics graphics)(Code)(Java Doc)
public void remove(int i)(Code)(Java Doc)
public void remove(Component component)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public void removeContainerListener(ContainerListener containerListener)(Code)(Java Doc)
public void setLayout(LayoutManager layoutManager)(Code)(Java Doc)
public void setOutput(TestOut out)(Code)(Java Doc)
public void setTimeouts(Timeouts timeouts)(Code)(Java Doc)
public static Container waitContainer(Container cont, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Container waitContainer(Container cont, ComponentChooser chooser)(Code)(Java Doc)
public static Container waitContainer(Container cont, int index)(Code)(Java Doc)
public static Container waitContainer(Container cont)(Code)(Java Doc)
public Component waitSubComponent(ComponentChooser chooser, int index)(Code)(Java Doc)
public Component waitSubComponent(ComponentChooser chooser)(Code)(Java Doc)

Fields inherited from org.netbeans.jemmy.operators.ComponentOperator
final public static String HEIGHT_DPROP(Code)(Java Doc)
final public static String IS_SHOWING_DPROP(Code)(Java Doc)
final public static String IS_VISIBLE_DPROP(Code)(Java Doc)
final public static String NAME_DPROP(Code)(Java Doc)
final public static String WIDTH_DPROP(Code)(Java Doc)
final public static String X_DPROP(Code)(Java Doc)
final public static String Y_DPROP(Code)(Java Doc)

Methods inherited from org.netbeans.jemmy.operators.ComponentOperator
public void activateWindow()(Code)(Java Doc)
public void add(PopupMenu popupMenu)(Code)(Java Doc)
public void addComponentListener(ComponentListener componentListener)(Code)(Java Doc)
public void addFocusListener(FocusListener focusListener)(Code)(Java Doc)
public void addInputMethodListener(InputMethodListener inputMethodListener)(Code)(Java Doc)
public void addKeyListener(KeyListener keyListener)(Code)(Java Doc)
public void addMouseListener(MouseListener mouseListener)(Code)(Java Doc)
public void addMouseMotionListener(MouseMotionListener mouseMotionListener)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public void addPropertyChangeListener(PropertyChangeListener propertyChangeListener)(Code)(Java Doc)
public void addPropertyChangeListener(String string, PropertyChangeListener propertyChangeListener)(Code)(Java Doc)
public int checkImage(Image image, int i, int i1, ImageObserver imageObserver)(Code)(Java Doc)
public int checkImage(Image image, ImageObserver imageObserver)(Code)(Java Doc)
public void clickForPopup(int x, int y, int mouseButton)(Code)(Java Doc)
public void clickForPopup(int x, int y)(Code)(Java Doc)
public void clickForPopup(int mouseButton)(Code)(Java Doc)
public void clickForPopup()(Code)(Java Doc)
public void clickMouse(int x, int y, int clickCount, int mouseButton, int modifiers, boolean forPopup)(Code)(Java Doc)
public void clickMouse(int x, int y, int clickCount, int mouseButton, int modifiers)(Code)(Java Doc)
public void clickMouse(int x, int y, int clickCount, int mouseButton)(Code)(Java Doc)
public void clickMouse(int x, int y, int clickCount)(Code)(Java Doc)
public void clickMouse(int clickCount, int mouseButton)(Code)(Java Doc)
public void clickMouse(int clickCount)(Code)(Java Doc)
public void clickMouse()(Code)(Java Doc)
public boolean contains(int i, int i1)(Code)(Java Doc)
public boolean contains(Point point)(Code)(Java Doc)
public void copyEnvironment(Operator anotherOperator)(Code)(Java Doc)
public Image createImage(int i, int i1)(Code)(Java Doc)
public Image createImage(ImageProducer imageProducer)(Code)(Java Doc)
public void dispatchEvent(AWTEvent aWTEvent)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public void dragMouse(int x, int y, int mouseButton, int modifiers)(Code)(Java Doc)
public void dragMouse(int x, int y, int mouseButton)(Code)(Java Doc)
public void dragMouse(int x, int y)(Code)(Java Doc)
public void dragNDrop(int start_x, int start_y, int end_x, int end_y, int mouseButton, int modifiers)(Code)(Java Doc)
public void dragNDrop(int start_x, int start_y, int end_x, int end_y, int mouseButton)(Code)(Java Doc)
public void dragNDrop(int start_x, int start_y, int end_x, int end_y)(Code)(Java Doc)
public void enableInputMethods(boolean b)(Code)(Java Doc)
public void enterMouse()(Code)(Java Doc)
public void exitMouse()(Code)(Java Doc)
public static Component findComponent(Container cont, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Component findComponent(Container cont, ComponentChooser chooser)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public Rectangle getBounds(Rectangle rectangle)(Code)(Java Doc)
public int getCenterX()(Code)(Java Doc)
public int getCenterXForClick()(Code)(Java Doc)
public int getCenterY()(Code)(Java Doc)
public int getCenterYForClick()(Code)(Java Doc)
public ColorModel getColorModel()(Code)(Java Doc)
public Component getComponentAt(int i, int i1)(Code)(Java Doc)
public Component getComponentAt(Point point)(Code)(Java Doc)
public ComponentOrientation getComponentOrientation()(Code)(Java Doc)
public Container getContainer(ComponentChooser chooser)(Code)(Java Doc)
public Container[] getContainers()(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
public DropTarget getDropTarget()(Code)(Java Doc)
public Hashtable getDump()(Code)(Java Doc)
public EventDispatcher getEventDispatcher()(Code)(Java Doc)
public void getFocus()(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 int getHeight()(Code)(Java Doc)
public InputContext getInputContext()(Code)(Java Doc)
public InputMethodRequests getInputMethodRequests()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocation(Point point)(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public TestOut getOutput()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Dimension getSize(Dimension dimension)(Code)(Java Doc)
public Component getSource()(Code)(Java Doc)
public Timeouts getTimeouts()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
public Object getTreeLock()(Code)(Java Doc)
public int getWidth()(Code)(Java Doc)
public Window getWindow()(Code)(Java Doc)
public int getX()(Code)(Java Doc)
public int getY()(Code)(Java Doc)
public boolean hasFocus()(Code)(Java Doc)
public boolean imageUpdate(Image image, int i, int i1, int i2, int i3, int i4)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isDoubleBuffered()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
public void list()(Code)(Java Doc)
public void list(PrintStream printStream)(Code)(Java Doc)
public void list(PrintStream printStream, int i)(Code)(Java Doc)
public void list(PrintWriter printWriter)(Code)(Java Doc)
public void list(PrintWriter printWriter, int i)(Code)(Java Doc)
public void makeComponentVisible()(Code)(Java Doc)
public void moveMouse(int x, int y)(Code)(Java Doc)
public void paint(Graphics graphics)(Code)(Java Doc)
public void paintAll(Graphics graphics)(Code)(Java Doc)
public boolean prepareImage(Image image, int i, int i1, ImageObserver imageObserver)(Code)(Java Doc)
public boolean prepareImage(Image image, ImageObserver imageObserver)(Code)(Java Doc)
public void pressKey(int keyCode, int modifiers)(Code)(Java Doc)
public void pressKey(int keyCode)(Code)(Java Doc)
public void pressMouse(int x, int y)(Code)(Java Doc)
public void pressMouse()(Code)(Java Doc)
public void print(Graphics graphics)(Code)(Java Doc)
public void printAll(Graphics graphics)(Code)(Java Doc)
public void pushKey(int keyCode, int modifiers)(Code)(Java Doc)
public void pushKey(int keyCode)(Code)(Java Doc)
public void releaseKey(int keyCode, int modifiers)(Code)(Java Doc)
public void releaseKey(int keyCode)(Code)(Java Doc)
public void releaseMouse(int x, int y)(Code)(Java Doc)
public void releaseMouse()(Code)(Java Doc)
public void remove(MenuComponent menuComponent)(Code)(Java Doc)
public void removeComponentListener(ComponentListener componentListener)(Code)(Java Doc)
public void removeFocusListener(FocusListener focusListener)(Code)(Java Doc)
public void removeInputMethodListener(InputMethodListener inputMethodListener)(Code)(Java Doc)
public void removeKeyListener(KeyListener keyListener)(Code)(Java Doc)
public void removeMouseListener(MouseListener mouseListener)(Code)(Java Doc)
public void removeMouseMotionListener(MouseMotionListener mouseMotionListener)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void removePropertyChangeListener(PropertyChangeListener propertyChangeListener)(Code)(Java Doc)
public void removePropertyChangeListener(String string, PropertyChangeListener propertyChangeListener)(Code)(Java Doc)
public void repaint()(Code)(Java Doc)
public void repaint(int i, int i1, int i2, int i3)(Code)(Java Doc)
public void repaint(long l)(Code)(Java Doc)
public void repaint(long l, int i, int i1, int i2, int i3)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public void setBackground(Color color)(Code)(Java Doc)
public void setBounds(int i, int i1, int i2, int i3)(Code)(Java Doc)
public void setBounds(Rectangle rectangle)(Code)(Java Doc)
public void setComponentOrientation(ComponentOrientation componentOrientation)(Code)(Java Doc)
public void setCursor(Cursor cursor)(Code)(Java Doc)
public void setDropTarget(DropTarget dropTarget)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFont(Font font)(Code)(Java Doc)
public void setForeground(Color color)(Code)(Java Doc)
public void setLocale(Locale locale)(Code)(Java Doc)
public void setLocation(int i, int i1)(Code)(Java Doc)
public void setLocation(Point point)(Code)(Java Doc)
public void setName(String string)(Code)(Java Doc)
public void setOutput(TestOut out)(Code)(Java Doc)
public void setSize(int i, int i1)(Code)(Java Doc)
public void setSize(Dimension dimension)(Code)(Java Doc)
public void setTimeouts(Timeouts timeouts)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void transferFocus()(Code)(Java Doc)
public void typeKey(int keyCode, char keyChar, int modifiers)(Code)(Java Doc)
public void typeKey(char keyChar, int modifiers)(Code)(Java Doc)
public void typeKey(char keyChar)(Code)(Java Doc)
public void update(Graphics graphics)(Code)(Java Doc)
public void validate()(Code)(Java Doc)
public static Component waitComponent(Container cont, ComponentChooser chooser, int index)(Code)(Java Doc)
public static Component waitComponent(Container cont, ComponentChooser chooser)(Code)(Java Doc)
protected static Component waitComponent(ContainerOperator contOper, ComponentChooser chooser, int index)(Code)(Java Doc)
protected static Component waitComponent(Container cont, ComponentChooser chooser, int index, Timeouts timeouts, TestOut output)(Code)(Java Doc)
public void waitComponentEnabled() throws InterruptedException(Code)(Java Doc)
public void waitComponentShowing(boolean visibility)(Code)(Java Doc)
public void waitComponentVisible(boolean visibility)(Code)(Java Doc)
public void waitHasFocus()(Code)(Java Doc)
public void wtComponentEnabled()(Code)(Java Doc)

Fields inherited from org.netbeans.jemmy.operators.Operator
final public static String CLASS_DPROP(Code)(Java Doc)
final public static String TO_STRING_DPROP(Code)(Java Doc)

Methods inherited from org.netbeans.jemmy.operators.Operator
public static void addOperatorPackage(String pkgName)(Code)(Java Doc)
protected String[] addToDump(Hashtable table, String title, Object[] items)(Code)(Java Doc)
protected String[] addToDump(Hashtable table, String title, Object[][] items)(Code)(Java Doc)
public void copyEnvironment(Operator anotherOperator)(Code)(Java Doc)
public static ComponentOperator createOperator(Component comp)(Code)(Java Doc)
public CharBindingMap getCharBindingMap()(Code)(Java Doc)
public int getCharKey(char c)(Code)(Java Doc)
public int getCharModifiers(char c)(Code)(Java Doc)
public int[] getCharsKeys(char[] c)(Code)(Java Doc)
public int[] getCharsKeys(String s)(Code)(Java Doc)
public int[] getCharsModifiers(char[] c)(Code)(Java Doc)
public int[] getCharsModifiers(String s)(Code)(Java Doc)
public StringComparator getComparator()(Code)(Java Doc)
public static ComponentVisualizer getDefaultComponentVisualizer()(Code)(Java Doc)
public static int getDefaultMouseButton()(Code)(Java Doc)
public static PathParser getDefaultPathParser()(Code)(Java Doc)
public static StringComparator getDefaultStringComparator()(Code)(Java Doc)
public static boolean getDefaultVerification()(Code)(Java Doc)
public Hashtable getDump()(Code)(Java Doc)
public static Operator getEnvironmentOperator()(Code)(Java Doc)
public TestOut getOutput()(Code)(Java Doc)
public String[] getParentPath(String path)(Code)(Java Doc)
public ComponentChooser[] getParentPath(ComponentChooser path)(Code)(Java Doc)
public PathParser getPathParser()(Code)(Java Doc)
public static int getPopupMouseButton()(Code)(Java Doc)
public JemmyProperties getProperties()(Code)(Java Doc)
public QueueTool getQueueTool()(Code)(Java Doc)
abstract public Component getSource()(Code)(Java Doc)
public Timeouts getTimeouts()(Code)(Java Doc)
public boolean getVerification()(Code)(Java Doc)
public ComponentVisualizer getVisualizer()(Code)(Java Doc)
public static boolean isCaptionEqual(String caption, String match, boolean ce, boolean ccs)(Code)(Java Doc)
public static boolean isCaptionEqual(String caption, String match, StringComparator comparator)(Code)(Java Doc)
public boolean isCaptionEqual(String caption, String match)(Code)(Java Doc)
protected void lockQueue()(Code)(Java Doc)
public String[] parseString(String path)(Code)(Java Doc)
public String[] parseString(String path, String delim)(Code)(Java Doc)
public void printDump()(Code)(Java Doc)
protected void produceNoBlocking(NoBlockingAction action, Object param)(Code)(Java Doc)
protected void produceNoBlocking(NoBlockingAction action)(Code)(Java Doc)
protected Object produceTimeRestricted(Action action, Object param, long wholeTime)(Code)(Java Doc)
protected Object produceTimeRestricted(Action action, long wholeTime)(Code)(Java Doc)
protected Object runMapping(MapAction action)(Code)(Java Doc)
protected char runMapping(MapCharacterAction action)(Code)(Java Doc)
protected byte runMapping(MapByteAction action)(Code)(Java Doc)
protected int runMapping(MapIntegerAction action)(Code)(Java Doc)
protected long runMapping(MapLongAction action)(Code)(Java Doc)
protected float runMapping(MapFloatAction action)(Code)(Java Doc)
protected double runMapping(MapDoubleAction action)(Code)(Java Doc)
protected boolean runMapping(MapBooleanAction action)(Code)(Java Doc)
protected void runMapping(MapVoidAction action)(Code)(Java Doc)
public void setCharBindingMap(CharBindingMap map)(Code)(Java Doc)
public void setComparator(StringComparator comparator)(Code)(Java Doc)
public static ComponentVisualizer setDefaultComponentVisualizer(ComponentVisualizer visualizer)(Code)(Java Doc)
public static PathParser setDefaultPathParser(PathParser parser)(Code)(Java Doc)
public static StringComparator setDefaultStringComparator(StringComparator comparator)(Code)(Java Doc)
public static boolean setDefaultVerification(boolean verification)(Code)(Java Doc)
public void setOutput(TestOut out)(Code)(Java Doc)
public void setPathParser(PathParser parser)(Code)(Java Doc)
public JemmyProperties setProperties(JemmyProperties properties)(Code)(Java Doc)
public void setTimeouts(Timeouts timeouts)(Code)(Java Doc)
public boolean setVerification(boolean verification)(Code)(Java Doc)
public void setVisualizer(ComponentVisualizer vo)(Code)(Java Doc)
public String toStringSource()(Code)(Java Doc)
protected void unlockAndThrow(Exception e)(Code)(Java Doc)
protected void unlockQueue()(Code)(Java Doc)
public void waitState(ComponentChooser state)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.