Searched refs:getSource (Results 1 - 25 of 519) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJComponentOperator.java326 if (getSource() instanceof Window) {
327 resultComp = getSource();
361 AccessibleContext a11y = getSource().getAccessibleContext();
385 ((JComponent) getSource()).addAncestorListener(ancestorListener);
399 ((JComponent) getSource()).addVetoableChangeListener(vetoableChangeListener);
411 ((JComponent) getSource()).computeVisibleRect(rectangle);
423 return ((JComponent) getSource()).createToolTip();
436 getSource().firePropertyChange(string, b, b1);
449 getSource().firePropertyChange(string, c, c1);
462 getSource()
[all...]
H A DComponentOperator.java206 this(waitComponent((Container) cont.getSource(),
312 return (waitComponent((Container) contOper.getSource(),
397 public Component getSource() { method in class:ComponentOperator
963 + getSource().getClass().toString());
973 waiter.waitAction(getSource());
996 Container cont = getSource().getParent();
1004 cont = getSource().getParent();
1021 Container cont = getSource().getParent();
1040 if (getSource() instanceof Window) {
1041 return (Window) getSource();
[all...]
H A DJSliderOperator.java415 result.put(MINIMUM_DPROP, Integer.toString(((JSlider) getSource()).getMinimum()));
416 result.put(MAXIMUM_DPROP, Integer.toString(((JSlider) getSource()).getMaximum()));
417 result.put(ORIENTATION_DPROP, (((JSlider) getSource()).getOrientation() == JSlider.HORIZONTAL)
420 result.put(IS_INVERTED_DPROP, ((JSlider) getSource()).getInverted() ? "true" : "false");
421 result.put(VALUE_DPROP, Integer.toString(((JSlider) getSource()).getValue()));
434 ((JSlider) getSource()).addChangeListener(changeListener);
446 return ((JSlider) getSource()).createStandardLabels(i);
458 return ((JSlider) getSource()).createStandardLabels(i, i1);
470 return ((JSlider) getSource()).getExtent();
482 return ((JSlider) getSource())
[all...]
H A DAbstractButtonOperator.java479 if (((AbstractButton) getSource()).getText() != null) {
480 result.put(TEXT_DPROP, ((AbstractButton) getSource()).getText());
482 result.put(IS_SELECTED_DPROP, ((AbstractButton) getSource()).isSelected() ? "true" : "false");
496 ((AbstractButton) getSource()).addActionListener(actionListener);
509 ((AbstractButton) getSource()).addChangeListener(changeListener);
521 ((AbstractButton) getSource()).addItemListener(itemListener);
533 ((AbstractButton) getSource()).doClick();
545 ((AbstractButton) getSource()).doClick(i);
557 return ((AbstractButton) getSource()).getActionCommand();
569 return ((AbstractButton) getSource())
[all...]
H A DJTableHeaderOperator.java203 ((JTableHeader) getSource()).setTable(jTable);
215 return ((JTableHeader) getSource()).getTable();
227 ((JTableHeader) getSource()).setReorderingAllowed(b);
239 return ((JTableHeader) getSource()).getReorderingAllowed();
251 ((JTableHeader) getSource()).setResizingAllowed(b);
263 return ((JTableHeader) getSource()).getResizingAllowed();
275 return ((JTableHeader) getSource()).getDraggedColumn();
287 return ((JTableHeader) getSource()).getDraggedDistance();
299 return ((JTableHeader) getSource()).getResizingColumn();
311 ((JTableHeader) getSource())
[all...]
H A DJLabelOperator.java270 if (((JLabel) getSource()).getText() != null) {
271 result.put(TEXT_DPROP, ((JLabel) getSource()).getText());
287 return ((JLabel) getSource()).getDisabledIcon();
299 return ((JLabel) getSource()).getDisplayedMnemonic();
311 return ((JLabel) getSource()).getHorizontalAlignment();
323 return ((JLabel) getSource()).getHorizontalTextPosition();
335 return ((JLabel) getSource()).getIcon();
347 return ((JLabel) getSource()).getIconTextGap();
359 return ((JLabel) getSource()).getLabelFor();
371 return ((JLabel) getSource())
[all...]
H A DJProgressBarOperator.java280 return (chooser.checkValue(((JProgressBar) getSource()).getValue())
368 result.put(MINIMUM_DPROP, Integer.toString(((JProgressBar) getSource()).getMinimum()));
369 result.put(MAXIMUM_DPROP, Integer.toString(((JProgressBar) getSource()).getMaximum()));
370 result.put(VALUE_DPROP, Integer.toString(((JProgressBar) getSource()).getValue()));
383 ((JProgressBar) getSource()).addChangeListener(changeListener);
395 return ((JProgressBar) getSource()).getMaximum();
407 return ((JProgressBar) getSource()).getMinimum();
419 return ((JProgressBar) getSource()).getModel();
431 return ((JProgressBar) getSource()).getOrientation();
443 return ((JProgressBar) getSource())
[all...]
H A DWindowOperator.java283 output.printLine("Activate window\n " + getSource().toString());
293 output.printLine("Requesting close of window\n " + getSource().toString());
306 output.printLine("Closing window\n " + getSource().toString());
326 output.printLine("Closing window\n " + getSource().toString());
342 output.printLine("Moving frame\n " + getSource().toString());
354 output.printLine("Resizing frame\n " + getSource().toString());
369 return findWindow((Window) getSource(), chooser, index);
396 return ww.waitWindow((Window) getSource(), chooser, index);
418 + getSource().toString());
447 ((Window) getSource())
[all...]
H A DJSplitPaneOperator.java520 result.put(MINIMUM_DPROP, Integer.toString(((JSplitPane) getSource()).getMinimumDividerLocation()));
521 result.put(MAXIMUM_DPROP, Integer.toString(((JSplitPane) getSource()).getMaximumDividerLocation()));
522 result.put(ORIENTATION_DPROP, (((JSplitPane) getSource()).getOrientation() == JSplitPane.HORIZONTAL_SPLIT)
525 result.put(VALUE_DPROP, Integer.toString(((JSplitPane) getSource()).getDividerLocation()));
526 result.put(IS_ONE_TOUCH_EXPANDABLE_DPROP, ((JSplitPane) getSource()).isOneTouchExpandable() ? "true" : "false");
539 return ((JSplitPane) getSource()).getBottomComponent();
551 return ((JSplitPane) getSource()).getDividerLocation();
563 return ((JSplitPane) getSource()).getDividerSize();
575 return ((JSplitPane) getSource()).getLastDividerLocation();
587 return ((JSplitPane) getSource())
[all...]
H A DJTabbedPaneOperator.java548 if (((JTabbedPane) getSource()).getSelectedIndex() != -1) {
549 result.put(SELECTED_PAGE_DPROP, ((JTabbedPane) getSource()).
550 getTitleAt(((JTabbedPane) getSource()).getSelectedIndex()));
552 String[] pages = new String[((JTabbedPane) getSource()).getTabCount()];
553 for (int i = 0; i < ((JTabbedPane) getSource()).getTabCount(); i++) {
554 pages[i] = ((JTabbedPane) getSource()).getTitleAt(i);
569 ((JTabbedPane) getSource()).addChangeListener(changeListener);
581 ((JTabbedPane) getSource()).addTab(string, component);
593 ((JTabbedPane) getSource()).addTab(string, icon, component);
606 ((JTabbedPane) getSource())
[all...]
H A DContainerOperator.java297 final ComponentSearcher searcher = new ComponentSearcher((Container) getSource());
366 return ((Container) getSource()).add(component);
378 return ((Container) getSource()).add(component, i);
390 ((Container) getSource()).add(component, object);
402 ((Container) getSource()).add(component, object, i);
414 return ((Container) getSource()).add(string, component);
427 ((Container) getSource()).addContainerListener(containerListener);
439 return ((Container) getSource()).findComponentAt(i, i1);
451 return ((Container) getSource()).findComponentAt(point);
463 return ((Container) getSource())
[all...]
H A DJListOperator.java352 getListCellRendererComponent((JList<Object>) getSource(),
531 if (((JList) getSource()).getModel().getSize() <= itemIndex) {
536 if (((JList) getSource()).getAutoscrolls()) {
537 ((JList) getSource()).ensureIndexIsVisible(itemIndex);
676 scroller.scrollToComponentRectangle(getSource(),
834 String[] items = new String[((JList) getSource()).getModel().getSize()];
835 for (int i = 0; i < ((JList) getSource()).getModel().getSize(); i++) {
836 items[i] = ((JList) getSource()).getModel().getElementAt(i).toString();
838 int[] selectedIndices = ((JList) getSource()).getSelectedIndices();
858 ((JList) getSource())
[all...]
H A DJTreeOperator.java454 return ((JTree) getSource()).getModel().getChildCount(node);
469 TreeModel md = ((JTree) getSource()).getModel();
490 return ((JTree) getSource()).getModel().getChild(node, index);
1327 scroller.scrollToComponentRectangle(getSource(),
1372 getTreeCellRendererComponent((JTree) getSource(),
1700 Object root = ((JTree) getSource()).getModel().getRoot();
1704 int minSelection = ((JTree) getSource()).getMinSelectionRow();
1706 Object minObject = ((JTree) getSource()).
1710 int maxSelection = ((JTree) getSource()).getMaxSelectionRow();
1712 Object maxObject = ((JTree) getSource())
[all...]
H A DJTableOperator.java1049 scroller.scrollToComponentRectangle(getSource(),
1106 return (JPopupMenuOperator.callPopup(getSource(),
1126 getTableCellRendererComponent((JTable) getSource(),
1217 TableModel model = ((JTable) getSource()).getModel();
1233 columns[j] = ((JTable) getSource()).getColumnName(j);
1236 int[] selColNums = ((JTable) getSource()).getSelectedColumns();
1242 int[] selRowNums = ((JTable) getSource()).getSelectedRows();
1262 ((JTable) getSource()).addColumn(tableColumn);
1274 ((JTable) getSource()).addColumnSelectionInterval(i, i1);
1286 ((JTable) getSource())
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/core/
H A DNonElementRef.java50 PropertyInfo<T,C> getSource(); method in interface:NonElementRef
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/event/
H A DPrintEvent.java54 return ("PrintEvent on " + getSource().toString());
H A DPrintJobEvent.java120 return (DocPrintJob) getSource();
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/
H A DUngrabEvent.java52 return "sun.awt.UngrabEvent[" + getSource() + "]";
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/input/
H A DMouseEventDriver.java57 dispatchEvent(oper.getSource(),
65 dispatchEvent(oper.getSource(),
73 dispatchEvent(oper.getSource(),
84 dispatchEvent(oper.getSource(),
88 dispatchEvent(oper.getSource(),
94 dispatchEvent(oper.getSource(),
98 dispatchEvent(oper.getSource(),
102 dispatchEvent(oper.getSource(),
109 dispatchEvent(oper.getSource(),
113 dispatchEvent(oper.getSource(),
[all...]
/openjdk10/jdk/test/javax/management/relation/
H A DRelationNotificationSourceTest.java55 if (!name.equals(n1.getSource()))
56 throw new Exception("FAILED: source is " + n1.getSource());
69 if (!name.equals(n2.getSource()))
70 throw new Exception("FAILED: source is " + n2.getSource());
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DSplitFilter.java59 if (f.getSource().getSourceNodes().size() > 0) {
60 os.getSource().addSourceNodes(f.getSource());
61 os.setAssociatedNode(f.getSource().getSourceNodes().get(0));
76 if (f.getSource().getSourceNodes().size() > 0) {
77 is.getSource().addSourceNodes(f.getSource());
78 is.setAssociatedNode(f.getSource().getSourceNodes().get(0));
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/windows/
H A DDefaultWindowDriver.java51 eDriver.dispatchEvent(oper.getSource(),
52 new WindowEvent((Window) oper.getSource(),
54 eDriver.dispatchEvent(oper.getSource(),
55 new FocusEvent(oper.getSource(),
62 eDriver.dispatchEvent(oper.getSource(),
63 new WindowEvent((Window) oper.getSource(),
89 eDriver.dispatchEvent(oper.getSource(),
90 new ComponentEvent(oper.getSource(),
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/image/
H A DAbstractMultiResolutionImage.java98 * it is equivalent to: {@code getBaseImage().getSource()}.
106 public ImageProducer getSource() { method in class:AbstractMultiResolutionImage
107 return getBaseImage().getSource();
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/focus/
H A DAPIFocusDriver.java44 eDriver.dispatchEvent(operator.getSource(),
45 new FocusEvent(operator.getSource(),
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/runtime/
H A DRuntimeTypeRef.java37 RuntimePropertyInfo getSource(); method in interface:RuntimeTypeRef

Completed in 151 milliseconds

1234567891011>>