Searched refs:ScrollPaneAdjustable (Results 1 - 9 of 9) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | ScrollPanePeer.java | 29 import java.awt.ScrollPaneAdjustable; 86 * @see ScrollPaneAdjustable#setUnitIncrement(int)
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | ScrollPaneAdjustable.java | 42 public class ScrollPaneAdjustable implements Adjustable, Serializable { class in inherits:Adjustable,Serializable 163 public void setTypedValue(final ScrollPaneAdjustable adj, 186 ScrollPaneAdjustable(ScrollPane sp, AdjustmentListener l, int orientation) { method in class:ScrollPaneAdjustable 365 * events from this <code>ScrollPaneAdjustable</code>. 386 * receives adjustment events from this <code>ScrollPaneAdjustable</code>. 408 * registered on this <code>ScrollPaneAdjustable</code>. 410 * @return all of this <code>ScrollPaneAdjustable</code>'s
|
H A D | ScrollPane.java | 51 * by two <code>ScrollPaneAdjustable</code> objects (one for each 147 private ScrollPaneAdjustable vAdjustable; 159 private ScrollPaneAdjustable hAdjustable; 216 vAdjustable = new ScrollPaneAdjustable(this, new PeerFixer(this), 218 hAdjustable = new ScrollPaneAdjustable(this, new PeerFixer(this), 322 * Returns the <code>ScrollPaneAdjustable</code> object which 326 * @see java.awt.ScrollPaneAdjustable 333 * Returns the <code>ScrollPaneAdjustable</code> object which 337 * @see java.awt.ScrollPaneAdjustable 696 hAdjustable = (ScrollPaneAdjustable) [all...] |
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WScrollPanePeer.java | 172 native void setTypedValue(ScrollPaneAdjustable adjustable, int newpos, int type); 195 ScrollPaneAdjustable adj = null; 197 // ScrollPaneAdjustable made public in 1.4, but 199 // ScrollPaneAdjustable because it would break backward 203 adj = (ScrollPaneAdjustable)sp.getVAdjustable(); 205 adj = (ScrollPaneAdjustable)sp.getHAdjustable(); 249 // Instead, we call private method setTypedValue of ScrollPaneAdjustable. 250 // Because ScrollPaneAdjustable is in another package we should call it through native code.
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XScrollPanePeer.java | 290 ScrollPaneAdjustable hadj = (ScrollPaneAdjustable)sp.getHAdjustable(); 302 ScrollPaneAdjustable vadj = (ScrollPaneAdjustable)sp.getVAdjustable(); 316 void setAdjustableValue(ScrollPaneAdjustable adj, int value, int type) {
|
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | AWTAccessor.java | 525 * An accessor for the ScrollPaneAdjustable class. 531 void setTypedValue(final ScrollPaneAdjustable adj, final int v, 910 * Set an accessor object for the java.awt.ScrollPaneAdjustable class. 917 * Retrieve the accessor object for the java.awt.ScrollPaneAdjustable 922 unsafe.ensureClassInitialized(ScrollPaneAdjustable.class);
|
/openjdk7/jdk/make/sun/awt/ |
H A D | FILES_export_unix.gmk | 138 java/awt/ScrollPaneAdjustable.java \
|
H A D | FILES_export_windows.gmk | 47 java/awt/ScrollPaneAdjustable.java \
|
/openjdk7/jdk/make/sun/lwawt/ |
H A D | FILES_export_macosx.gmk | 221 java/awt/ScrollPaneAdjustable.java \
|
Completed in 4285 milliseconds