Java Doc for SAbstractAdjustable.java in  » Swing-Library » wings3 » org » wings » 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 » Swing Library » wings3 » org.wings 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.wings.SComponent
      org.wings.SAbstractAdjustable

All known Subclasses:   org.wings.SScrollBar,  org.wings.SPageScroller,
SAbstractAdjustable
abstract public class SAbstractAdjustable extends SComponent implements Adjustable,LowLevelEventListener(Code)
Base class for adjustable elements like SScrollBar and SPageScroller
author:
   Armin Haaf


Field Summary
final public static  intBLOCK
    
final public static  intMARGIN
    
final public static  intUNIT
    
protected  intblockIncrement
    
protected  booleanchangeFromEvent
    
protected  SBoundedRangeModelmodel
     The model that represents the scrollbar's minimum, maximum, extent (aka "visibleAmount") and current value.
protected  intorientation
    
protected  intunitIncrement
    

Constructor Summary
public  SAbstractAdjustable(int value, int extent, int min, int max)
     Creates a scrollbar with the specified orientation, value, extent, mimimum, and maximum. The "extent" is the size of the viewable area.
public  SAbstractAdjustable(SBoundedRangeModel model)
    
public  SAbstractAdjustable()
    

Method Summary
public  voidaddAdjustmentListener(AdjustmentListener l)
     Adds an AdjustmentListener.
abstract protected  voidadjust()
    
protected  voidfireAdjustmentValueChanged(int id, int type, int value)
    
public  voidfireFinalEvents()
    
public  voidfireIntermediateEvents()
    
public  intgetBlockIncrement(int direction)
     Returns the amount to change the scrollbar's value by, given a block (usually "page") up/down request.
final public  intgetBlockIncrement()
     For backwards compatibility with java.awt.Scrollbar.
final public  intgetExtent()
    
final public  intgetMaximum()
     The maximum value of the scrollbar is maximum - extent.
final public  intgetMinimum()
     Returns the minimum value supported by the scrollbar (usually zero).
final public  SBoundedRangeModelgetModel()
     Returns data model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
final public  intgetOrientation()
     Returns the adjustable's orientation (horizontal or vertical).
public  intgetUnitIncrement(int direction)
     Returns the amount to change the scrollbar's value by, given a unit up/down request.
final public  intgetUnitIncrement()
     For backwards compatibility with java.awt.Scrollbar.
final public  intgetValue()
     Returns the scrollbar's value.
final public  booleangetValueIsAdjusting()
     True if the scrollbar knob is being dragged.
final public  intgetVisibleAmount()
     Returns the scrollbar's extent, aka its "visibleAmount".
public  booleanisChangeFromEvent()
    
public  booleanisEpochCheckEnabled()
    
public  voidprocessLowLevelEvent(String action, String[] values)
    
public  voidremoveAdjustmentListener(AdjustmentListener l)
     Removes an AdjustmentEvent listener.
public  voidsetBlockIncrement(int blockIncrement)
     Sets the blockIncrement property.
public  voidsetEpochCheckEnabled(boolean epochCheckEnabled)
    
public  voidsetExtent(int value)
    
public  voidsetMaximum(int maximum)
     Sets the model's maximum property.
public  voidsetMinimum(int minimum)
     Sets the scrollbar's minimum value..
public  voidsetModel(SBoundedRangeModel newModel)
     Sets the model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
public  voidsetOrientation(int orientation)
     Set the scrollbar's orientation to either VERTICAL or HORIZONTAL.
public  voidsetUnitIncrement(int unitIncrement)
     Sets the unitIncrement property.
public  voidsetValue(int value)
     Sets the scrollbar's value.
public  voidsetValueIsAdjusting(boolean b)
     Sets the model's valueIsAdjusting property.
public  voidsetValues(int newValue, int newExtent, int newMin, int newMax)
    
public  voidsetVisibleAmount(int extent)
     Set the model's extent property: The amount of the view that is currently visible.

Field Detail
BLOCK
final public static int BLOCK(Code)



MARGIN
final public static int MARGIN(Code)



UNIT
final public static int UNIT(Code)



blockIncrement
protected int blockIncrement(Code)

See Also:   SAbstractAdjustable.setBlockIncrement



changeFromEvent
protected boolean changeFromEvent(Code)



model
protected SBoundedRangeModel model(Code)
The model that represents the scrollbar's minimum, maximum, extent (aka "visibleAmount") and current value.
See Also:   SAbstractAdjustable.setModel



orientation
protected int orientation(Code)

See Also:   SAbstractAdjustable.setBlockIncrement



unitIncrement
protected int unitIncrement(Code)

See Also:   SAbstractAdjustable.setUnitIncrement




Constructor Detail
SAbstractAdjustable
public SAbstractAdjustable(int value, int extent, int min, int max)(Code)
Creates a scrollbar with the specified orientation, value, extent, mimimum, and maximum. The "extent" is the size of the viewable area. It is also known as the "visible amount".

Note: Use setBlockIncrement to set the block increment to a size slightly smaller than the view's extent. That way, when the user jumps the knob to an adjacent position, one or two lines of the original contents remain in view.
throws:
  IllegalArgumentException - if orientation is not one of VERTICAL, HORIZONTAL
See Also:   SAbstractAdjustable.setOrientation
See Also:   SAbstractAdjustable.setValue
See Also:   SAbstractAdjustable.setVisibleAmount
See Also:   SAbstractAdjustable.setMinimum
See Also:   SAbstractAdjustable.setMaximum




SAbstractAdjustable
public SAbstractAdjustable(SBoundedRangeModel model)(Code)



SAbstractAdjustable
public SAbstractAdjustable()(Code)
Creates a scrollbar with the specified orientation and the following initial values:
 minimum = 0
 maximum = 100
 value = 0
 extent = 10
 




Method Detail
addAdjustmentListener
public void addAdjustmentListener(AdjustmentListener l)(Code)
Adds an AdjustmentListener. Adjustment listeners are notified each time the scrollbar's model changes. Adjustment events are provided for backwards compatability with java.awt.Scrollbar.

Note that the AdjustmentEvents type property will always have a placeholder value of AdjustmentEvent.TRACK because all changes to a BoundedRangeModels value are considered equivalent. To change the value of a BoundedRangeModel one just sets its value property, i.e. model.setValue(123). No information about the origin of the change, e.g. it's a block decrement, is provided. We don't try fabricate the origin of the change here.
Parameters:
  l - the AdjustmentLister to add
See Also:   SAbstractAdjustable.removeAdjustmentListener
See Also:   BoundedRangeModel.addChangeListener




adjust
abstract protected void adjust()(Code)



fireAdjustmentValueChanged
protected void fireAdjustmentValueChanged(int id, int type, int value)(Code)



fireFinalEvents
public void fireFinalEvents()(Code)



fireIntermediateEvents
public void fireIntermediateEvents()(Code)



getBlockIncrement
public int getBlockIncrement(int direction)(Code)
Returns the amount to change the scrollbar's value by, given a block (usually "page") up/down request. A ScrollBarUI implementation typically calls this method when the user clicks above or below the scrollbar "knob" to change the value up or down by large amount. Subclasses my override this method to compute a value, e.g. the change required to scroll up or down one paragraph in a text document.

The JScrollPane component creates scrollbars (by default) that override this method and delegate to the viewports Scrollable view, if it has one. The Scrollable interface provides a more specialized version of this method.
Parameters:
  direction - is -1 or 1 for up/down respectively the value of the blockIncrement property
See Also:   SAbstractAdjustable.setBlockIncrement
See Also:   SAbstractAdjustable.setValue




getBlockIncrement
final public int getBlockIncrement()(Code)
For backwards compatibility with java.awt.Scrollbar.
See Also:   Adjustable.getBlockIncrement
See Also:   SAbstractAdjustable.getBlockIncrement(int)



getExtent
final public int getExtent()(Code)



getMaximum
final public int getMaximum()(Code)
The maximum value of the scrollbar is maximum - extent. the value of the model's maximum property
See Also:   SAbstractAdjustable.setMaximum



getMinimum
final public int getMinimum()(Code)
Returns the minimum value supported by the scrollbar (usually zero). the value of the model's minimum property
See Also:   SAbstractAdjustable.setMinimum



getModel
final public SBoundedRangeModel getModel()(Code)
Returns data model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
See Also:   SAbstractAdjustable.setModel



getOrientation
final public int getOrientation()(Code)
Returns the adjustable's orientation (horizontal or vertical). VERTICAL or HORIZONTAL
See Also:   SAbstractAdjustable.setOrientation
See Also:   java.awt.Adjustable.getOrientation



getUnitIncrement
public int getUnitIncrement(int direction)(Code)
Returns the amount to change the scrollbar's value by, given a unit up/down request. A ScrollBarUI implementation typically calls this method when the user clicks on a scrollbar up/down arrow and uses the result to update the scrollbar's value. Subclasses my override this method to compute a value, e.g. the change required to scroll up or down one (variable height) line text or one row in a table.

The JScrollPane component creates scrollbars (by default) that override this method and delegate to the viewports Scrollable view, if it has one. The Scrollable interface provides a more specialized version of this method.
Parameters:
  direction - is -1 or 1 for up/down respectively the value of the unitIncrement property
See Also:   SAbstractAdjustable.setUnitIncrement
See Also:   SAbstractAdjustable.setValue




getUnitIncrement
final public int getUnitIncrement()(Code)
For backwards compatibility with java.awt.Scrollbar.
See Also:   Adjustable.getUnitIncrement
See Also:   SAbstractAdjustable.getUnitIncrement(int)



getValue
final public int getValue()(Code)
Returns the scrollbar's value. the model's value property
See Also:   SAbstractAdjustable.setValue



getValueIsAdjusting
final public boolean getValueIsAdjusting()(Code)
True if the scrollbar knob is being dragged. the value of the model's valueIsAdjusting property
See Also:   SAbstractAdjustable.setValueIsAdjusting



getVisibleAmount
final public int getVisibleAmount()(Code)
Returns the scrollbar's extent, aka its "visibleAmount". In many scrollbar look and feel implementations the size of the scrollbar "knob" or "thumb" is proportional to the extent. the value of the model's extent property
See Also:   SAbstractAdjustable.setVisibleAmount



isChangeFromEvent
public boolean isChangeFromEvent()(Code)



isEpochCheckEnabled
public boolean isEpochCheckEnabled()(Code)

See Also:   LowLevelEventListener.isEpochCheckEnabled
See Also:   



processLowLevelEvent
public void processLowLevelEvent(String action, String[] values)(Code)



removeAdjustmentListener
public void removeAdjustmentListener(AdjustmentListener l)(Code)
Removes an AdjustmentEvent listener.
Parameters:
  l - the AdjustmentLister to remove
See Also:   SAbstractAdjustable.addAdjustmentListener



setBlockIncrement
public void setBlockIncrement(int blockIncrement)(Code)
Sets the blockIncrement property. The scrollbar's block increment.
See Also:   SAbstractAdjustable.getBlockIncrement()



setEpochCheckEnabled
public void setEpochCheckEnabled(boolean epochCheckEnabled)(Code)

See Also:   LowLevelEventListener.isEpochCheckEnabled
See Also:   



setExtent
public void setExtent(int value)(Code)



setMaximum
public void setMaximum(int maximum)(Code)
Sets the model's maximum property. Note that the scrollbar's value can only be set to maximum - extent. The scrollbar's maximum value.
See Also:   SAbstractAdjustable.getMaximum
See Also:   BoundedRangeModel.setMaximum



setMinimum
public void setMinimum(int minimum)(Code)
Sets the scrollbar's minimum value..
See Also:   SAbstractAdjustable.getMinimum
See Also:   BoundedRangeModel.setMinimum



setModel
public void setModel(SBoundedRangeModel newModel)(Code)
Sets the model that handles the scrollbar's four fundamental properties: minimum, maximum, value, extent.
See Also:   SAbstractAdjustable.getModel



setOrientation
public void setOrientation(int orientation)(Code)
Set the scrollbar's orientation to either VERTICAL or HORIZONTAL.
throws:
  IllegalArgumentException - if orientation is not one of VERTICAL, HORIZONTAL
See Also:   SAbstractAdjustable.getOrientation



setUnitIncrement
public void setUnitIncrement(int unitIncrement)(Code)
Sets the unitIncrement property.
See Also:   SAbstractAdjustable.getUnitIncrement



setValue
public void setValue(int value)(Code)
Sets the scrollbar's value. This method just forwards the value to the model.
See Also:   SAbstractAdjustable.getValue
See Also:   BoundedRangeModel.setValue



setValueIsAdjusting
public void setValueIsAdjusting(boolean b)(Code)
Sets the model's valueIsAdjusting property. Scrollbar look and feel implementations should set this property to true when a knob drag begins, and to false when the drag ends. The scrollbar model will not generate ChangeEvents while valueIsAdjusting is true. True if the scrollbar thumb is being dragged.
See Also:   SAbstractAdjustable.getValueIsAdjusting
See Also:   BoundedRangeModel.setValueIsAdjusting



setValues
public void setValues(int newValue, int newExtent, int newMin, int newMax)(Code)
Sets the four BoundedRangeModel properties after forcing the arguments to obey the usual constraints:
 minimum <= value <= value+extent <= maximum
 


See Also:   BoundedRangeModel.setRangeProperties
See Also:   SAbstractAdjustable.setValue
See Also:   SAbstractAdjustable.setVisibleAmount
See Also:   SAbstractAdjustable.setMinimum
See Also:   SAbstractAdjustable.setMaximum




setVisibleAmount
public void setVisibleAmount(int extent)(Code)
Set the model's extent property: The amount of the view that is currently visible.
See Also:   SAbstractAdjustable.getVisibleAmount
See Also:   BoundedRangeModel.setExtent



Fields inherited from org.wings.SComponent
final public static int DONE_RENDERING(Code)(Java Doc)
final public static Selector SELECTOR_ALL(Code)(Java Doc)
final public static int START_RENDERING(Code)(Java Doc)
final public static int WHEN_FOCUSED_OR_ANCESTOR_OF_FOCUSED_COMPONENT(Code)(Java Doc)
final public static int WHEN_IN_FOCUSED_FRAME(Code)(Java Doc)
protected Map<Selector, Style> dynamicStyles(Code)(Java Doc)
protected boolean enabled(Code)(Java Doc)
protected boolean visible(Code)(Java Doc)

Methods inherited from org.wings.SComponent
final public void addComponentListener(SComponentListener l)(Code)(Java Doc)
public void addDynamicStyle(Style style)(Code)(Java Doc)
final protected void addEventListener(Class<T> type, T listener)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
final public void addParentFrameListener(SParentFrameListener l)(Code)(Java Doc)
final public void addRenderListener(SRenderListener renderListener)(Code)(Java Doc)
final public void addScriptListener(ScriptListener listener)(Code)(Java Doc)
public void addStyle(String additionalCssClassName)(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
protected void fireComponentChangeEvent(SComponentEvent aEvent)(Code)(Java Doc)
public void fireFinalEvents()(Code)(Java Doc)
protected void fireKeyEvents()(Code)(Java Doc)
final public void fireRenderEvent(int type)(Code)(Java Doc)
public ActionMap getActionMap()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public SBorder getBorder()(Code)(Java Doc)
public ComponentCG getCG()(Code)(Java Doc)
final public Object getClientProperty(Object key)(Code)(Java Doc)
public SPopupMenu getComponentPopupMenu()(Code)(Java Doc)
public Style getDynamicStyle(Selector selector)(Code)(Java Doc)
public Collection getDynamicStyles()(Code)(Java Doc)
public int getFocusTraversalIndex()(Code)(Java Doc)
public SFont getFont()(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public int getHorizontalAlignment()(Code)(Java Doc)
public InputMap getInputMap()(Code)(Java Doc)
public InputMap getInputMap(int condition)(Code)(Java Doc)
final protected int getListenerCount(Class type)(Code)(Java Doc)
final protected Object[] getListenerList()(Code)(Java Doc)
final public EventListener[] getListeners(Class<? extends EventListener> type)(Code)(Java Doc)
public String getLowLevelEventId()(Code)(Java Doc)
final public String getName()(Code)(Java Doc)
final public SContainer getParent()(Code)(Java Doc)
public SFrame getParentFrame()(Code)(Java Doc)
public SDimension getPreferredSize()(Code)(Java Doc)
public RequestURL getRequestURL()(Code)(Java Doc)
public boolean getResidesInForm()(Code)(Java Doc)
public List<ScriptListener> getScriptListenerList()(Code)(Java Doc)
public ScriptListener[] getScriptListeners()(Code)(Java Doc)
final public Session getSession()(Code)(Java Doc)
public boolean getShowAsFormComponent()(Code)(Java Doc)
public String getStyle()(Code)(Java Doc)
public String getToolTipText()(Code)(Java Doc)
public int getVerticalAlignment()(Code)(Java Doc)
public void invite(ComponentVisitor visitor) throws Exception(Code)(Java Doc)
protected static boolean isDifferent(Object oldObject, Object newObject)(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusOwner()(Code)(Java Doc)
public boolean isRecursivelyVisible()(Code)(Java Doc)
public boolean isReloadForced()(Code)(Java Doc)
protected boolean isUpdatePossible()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
protected void processComponentEvent(SComponentListener listener, SComponentEvent e)(Code)(Java Doc)
protected boolean processKeyEvents(String[] values)(Code)(Java Doc)
protected void processLowLevelEvent(String name, String[] values)(Code)(Java Doc)
final public void putClientProperty(Object key, Object value)(Code)(Java Doc)
final void register()(Code)(Java Doc)
public void reload()(Code)(Java Doc)
final protected void reloadIfChange(Object oldVal, Object newVal)(Code)(Java Doc)
final protected void reloadIfChange(int oldVal, int newVal)(Code)(Java Doc)
final protected void reloadIfChange(boolean oldVal, boolean newVal)(Code)(Java Doc)
final protected void reloadIfChange(byte oldVal, byte newVal)(Code)(Java Doc)
final protected void reloadIfChange(short oldVal, short newVal)(Code)(Java Doc)
final protected void reloadIfChange(long oldVal, long newVal)(Code)(Java Doc)
final protected void reloadIfChange(float oldVal, float newVal)(Code)(Java Doc)
final protected void reloadIfChange(double oldVal, double newVal)(Code)(Java Doc)
final protected void reloadIfChange(char oldVal, char newVal)(Code)(Java Doc)
final public void removeComponentListener(SComponentListener l)(Code)(Java Doc)
public void removeDynamicStyle(Selector selector)(Code)(Java Doc)
final protected void removeEventListener(Class<T> type, T listener)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
final public void removeParentFrameListener(SParentFrameListener l)(Code)(Java Doc)
final public void removeRenderListener(SRenderListener renderListener)(Code)(Java Doc)
final public void removeScriptListener(ScriptListener listener)(Code)(Java Doc)
public void removeStyle(String cssStyleClassName)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public void scrollRectToVisible(Rectangle aRect)(Code)(Java Doc)
public void setActionMap(ActionMap actionMap)(Code)(Java Doc)
public void setAttribute(String cssPropertyName, String value)(Code)(Java Doc)
public void setAttribute(CSSProperty property, String propertyValue)(Code)(Java Doc)
public void setAttribute(Selector selector, CSSProperty property, String propertyValue)(Code)(Java Doc)
public void setAttribute(Selector selector, CSSProperty property, SIcon icon)(Code)(Java Doc)
public void setAttribute(Selector selector, CSSProperty property, Color color)(Code)(Java Doc)
public void setAttributes(Selector selector, CSSAttributeSet attributes)(Code)(Java Doc)
public void setBackground(Color color)(Code)(Java Doc)
public void setBorder(SBorder border)(Code)(Java Doc)
public void setCG(ComponentCG newCG)(Code)(Java Doc)
public void setComponentPopupMenu(SPopupMenu popupMenu)(Code)(Java Doc)
public void setDynamicStyles(Collection dynamicStyles)(Code)(Java Doc)
public void setEnabled(boolean enabled)(Code)(Java Doc)
public void setFocusTraversalIndex(int index)(Code)(Java Doc)
public void setFont(SFont font)(Code)(Java Doc)
public void setForeground(Color color)(Code)(Java Doc)
public void setHorizontalAlignment(int alignment)(Code)(Java Doc)
public void setInputMap(InputMap inputMap)(Code)(Java Doc)
public void setInputMap(int condition, InputMap inputMap)(Code)(Java Doc)
public void setName(String uniqueName)(Code)(Java Doc)
public void setNameRaw(String uncheckedName)(Code)(Java Doc)
public void setParent(SContainer parent)(Code)(Java Doc)
protected void setParentFrame(SFrame parentFrame)(Code)(Java Doc)
public void setPreferredSize(SDimension preferredSize)(Code)(Java Doc)
public void setReloadForced(boolean forced)(Code)(Java Doc)
public void setShowAsFormComponent(boolean showAsFormComponent)(Code)(Java Doc)
public void setStyle(String cssClassName)(Code)(Java Doc)
public void setToolTipText(String t)(Code)(Java Doc)
public void setVerticalAlignment(int alignment)(Code)(Java Doc)
public void setVisible(boolean visible)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final void unregister()(Code)(Java Doc)
public void update(Update update)(Code)(Java Doc)
public void updateCG()(Code)(Java Doc)
public void write(Device s) throws IOException(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.