Java Doc for SProgressBar.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.SProgressBar

SProgressBar
public class SProgressBar extends SComponent (Code)
Graphical bar which can be used to visualize the progress of an operation.
author:
   Armin Haaf


Field Summary
protected transient  ChangeEventchangeEvent
     Only one ChangeEvent is needed per instance since the event's only interesting property is the immutable source, which is the progress bar.
protected  ChangeListenerchangeListener
     Listens for change events sent by the progress bar's model, redispatching them to change-event listeners registered upon this progress bar.
protected  BoundedRangeModelmodel
     The object that holds the data for the progress bar.
protected  intorientation
     Whether the progress bar is horizontal or vertical.
protected  booleanpaintString
     Whether to textually display a string on the progress bar. The default is false. Setting this to true causes a textual display of the progress to be rendered on the progress bar.
protected  StringprogressString
     An optional string that can be displayed on the progress bar. The default is null.

Constructor Summary
public  SProgressBar()
     Creates a horizontal progress bar that displays a border but no progress string.
public  SProgressBar(int orient)
     Creates a progress bar with the specified orientation, which can be either SProgressBar.VERTICAL or SProgressBar.HORIZONTAL.
public  SProgressBar(int min, int max)
     Creates a horizontal progress bar with the specified minimum and maximum.
public  SProgressBar(int orient, int min, int max)
     Creates a progress bar using the specified orientation, minimum, and maximum.
public  SProgressBar(BoundedRangeModel newModel)
     Creates a horizontal progress bar that uses the specified model to hold the progress bar's data.

Method Summary
public  voidaddChangeListener(ChangeListener l)
     Adds the specified ChangeListener to the progress bar.
protected  ChangeListenercreateChangeListener()
     Subclasses that want to handle change events from the model differently can override this to return an instance of a custom ChangeListener implementation.
protected  voidfireStateChanged()
     Notifies all listeners that have registered interest in ChangeEvents.
public  ChangeListener[]getChangeListeners()
     Returns an array of all the ChangeListeners added to this progress bar with addChangeListener.
public  ColorgetFilledColor()
    
public  intgetMaximum()
     Returns the progress bar's maximum value, which is stored in the progress bar's BoundedRangeModel.
public  intgetMinimum()
     Returns the progress bar's minimum value, which is stored in the progress bar's BoundedRangeModel.
public  BoundedRangeModelgetModel()
     Returns the data model used by this progress bar.
public  intgetOrientation()
     Returns SProgressBar.VERTICAL or SProgressBar.HORIZONTAL, depending on the orientation of the progress bar.
public  doublegetPercentComplete()
     Returns the percent complete for the progress bar.
public  SDimensiongetProgressBarDimension()
    
public  StringgetString()
     Returns the current value of the progress string.
public  ColorgetUnfilledColor()
    
public  intgetValue()
     Returns the progress bar's current value, which is stored in the progress bar's BoundedRangeModel. The value is always between the minimum and maximum values, inclusive.
public  booleanisIndeterminate()
     Returns the value of the indeterminate property.
public  booleanisStringPainted()
     Returns the value of the stringPainted property.
public  voidremoveChangeListener(ChangeListener l)
     Removes a ChangeListener from the progress bar.
public  voidsetCG(ProgressBarCG cg)
     Sets the look-and-feel object that renders this component.
public  voidsetFilledColor(Color c)
    
public  voidsetIndeterminate(boolean newValue)
     Sets the indeterminate property of the progress bar, which determines whether the progress bar is in determinate or indeterminate mode.
public  voidsetMaximum(int n)
     Sets the progress bar's maximum value (stored in the progress bar's data model) to n.
public  voidsetMinimum(int n)
     Sets the progress bar's minimum value (stored in the progress bar's data model) to n.
public  voidsetModel(BoundedRangeModel newModel)
     Sets the data model used by the SProgressBar.
public  voidsetOrientation(int newOrientation)
     Sets the progress bar's orientation to newOrientation, which must be SProgressBar.VERTICAL or SProgressBar.HORIZONTAL.
public  voidsetProgressBarDimension(SDimension dimension)
     Sets the size of the graphically rendered progress bar element.
public  voidsetString(String s)
     Sets the value of the progress string.
public  voidsetStringPainted(boolean b)
     Sets the value of the stringPainted property, which determines whether the progress bar should render a progress string.
public  voidsetUnfilledColor(Color c)
    
public  voidsetValue(int n)
     Sets the progress bar's current value (stored in the progress bar's data model) to n.

Field Detail
changeEvent
protected transient ChangeEvent changeEvent(Code)
Only one ChangeEvent is needed per instance since the event's only interesting property is the immutable source, which is the progress bar.



changeListener
protected ChangeListener changeListener(Code)
Listens for change events sent by the progress bar's model, redispatching them to change-event listeners registered upon this progress bar.
See Also:   SProgressBar.createChangeListener



model
protected BoundedRangeModel model(Code)
The object that holds the data for the progress bar.
See Also:   SProgressBar.setModel



orientation
protected int orientation(Code)
Whether the progress bar is horizontal or vertical. The default is HORIZONTAL.
See Also:   SProgressBar.setOrientation



paintString
protected boolean paintString(Code)
Whether to textually display a string on the progress bar. The default is false. Setting this to true causes a textual display of the progress to be rendered on the progress bar. If the progressString is null, the percentage of completion is displayed on the progress bar. Otherwise, the progressString is rendered on the progress bar.
See Also:   SProgressBar.setStringPainted



progressString
protected String progressString(Code)
An optional string that can be displayed on the progress bar. The default is null. Setting this to a non-null value does not imply that the string will be displayed.
See Also:   SProgressBar.setString




Constructor Detail
SProgressBar
public SProgressBar()(Code)
Creates a horizontal progress bar that displays a border but no progress string. The initial and minimum values are 0, and the maximum is 100.
See Also:   SProgressBar.setOrientation
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString
See Also:   SProgressBar.setIndeterminate



SProgressBar
public SProgressBar(int orient)(Code)
Creates a progress bar with the specified orientation, which can be either SProgressBar.VERTICAL or SProgressBar.HORIZONTAL. By default, a border is painted but a progress string is not. The initial and minimum values are 0, and the maximum is 100.
Parameters:
  orient - the desired orientation of the progress bar
See Also:   SProgressBar.setOrientation
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString
See Also:   SProgressBar.setIndeterminate



SProgressBar
public SProgressBar(int min, int max)(Code)
Creates a horizontal progress bar with the specified minimum and maximum. Sets the initial value of the progress bar to the specified minimum. By default, a border is painted but a progress string is not. The BoundedRangeModel that holds the progress bar's data handles any issues that may arise from improperly setting the minimum, initial, and maximum values on the progress bar.
Parameters:
  min - the minimum value of the progress bar
Parameters:
  max - the maximum value of the progress bar
See Also:   BoundedRangeModel
See Also:   SProgressBar.setOrientation
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString
See Also:   SProgressBar.setIndeterminate



SProgressBar
public SProgressBar(int orient, int min, int max)(Code)
Creates a progress bar using the specified orientation, minimum, and maximum. By default, a border is painted but a progress string is not. Sets the initial value of the progress bar to the specified minimum. The BoundedRangeModel that holds the progress bar's data handles any issues that may arise from improperly setting the minimum, initial, and maximum values on the progress bar.
Parameters:
  orient - the desired orientation of the progress bar
Parameters:
  min - the minimum value of the progress bar
Parameters:
  max - the maximum value of the progress bar
See Also:   BoundedRangeModel
See Also:   SProgressBar.setOrientation
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString
See Also:   SProgressBar.setIndeterminate



SProgressBar
public SProgressBar(BoundedRangeModel newModel)(Code)
Creates a horizontal progress bar that uses the specified model to hold the progress bar's data. By default, a border is painted but a progress string is not.
Parameters:
  newModel - the data model for the progress bar
See Also:   SProgressBar.setOrientation
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString
See Also:   SProgressBar.setIndeterminate




Method Detail
addChangeListener
public void addChangeListener(ChangeListener l)(Code)
Adds the specified ChangeListener to the progress bar.
Parameters:
  l - the ChangeListener to add



createChangeListener
protected ChangeListener createChangeListener()(Code)
Subclasses that want to handle change events from the model differently can override this to return an instance of a custom ChangeListener implementation.
See Also:   SProgressBar.changeListener
See Also:   javax.swing.event.ChangeListener
See Also:   javax.swing.BoundedRangeModel



fireStateChanged
protected void fireStateChanged()(Code)
Notifies all listeners that have registered interest in ChangeEvents. The event instance is created if necessary.
See Also:   javax.swing.event.EventListenerList



getChangeListeners
public ChangeListener[] getChangeListeners()(Code)
Returns an array of all the ChangeListeners added to this progress bar with addChangeListener. all of the ChangeListeners added or an emptyarray if no listeners have been added
since:
   1.4



getFilledColor
public Color getFilledColor()(Code)
Returns the color in which the fille region is painted



getMaximum
public int getMaximum()(Code)
Returns the progress bar's maximum value, which is stored in the progress bar's BoundedRangeModel. By default, the maximum value is 100. the progress bar's maximum value
See Also:   SProgressBar.setMaximum
See Also:   BoundedRangeModel.getMaximum



getMinimum
public int getMinimum()(Code)
Returns the progress bar's minimum value, which is stored in the progress bar's BoundedRangeModel. By default, the minimum value is 0. the progress bar's minimum value
See Also:   SProgressBar.setMinimum
See Also:   BoundedRangeModel.getMinimum



getModel
public BoundedRangeModel getModel()(Code)
Returns the data model used by this progress bar. the BoundedRangeModel currently in use
See Also:   BoundedRangeModel



getOrientation
public int getOrientation()(Code)
Returns SProgressBar.VERTICAL or SProgressBar.HORIZONTAL, depending on the orientation of the progress bar. The default orientation is HORIZONTAL. HORIZONTAL or VERTICAL
See Also:   SProgressBar.setOrientation



getPercentComplete
public double getPercentComplete()(Code)
Returns the percent complete for the progress bar. Note that this number is between 0.0 and 1.0. the percent complete for this progress bar



getProgressBarDimension
public SDimension getProgressBarDimension()(Code)
The size of the graphically rendered progress bar element if it has been set, else null



getString
public String getString()(Code)
Returns the current value of the progress string. If you are providing a custom progress string by overriding this method, make sure your implementation calls setString before calling super.getString. the value of the percent string
See Also:   SProgressBar.setString



getUnfilledColor
public Color getUnfilledColor()(Code)
Returns the color in which the unfilled region is painted



getValue
public int getValue()(Code)
Returns the progress bar's current value, which is stored in the progress bar's BoundedRangeModel. The value is always between the minimum and maximum values, inclusive. By default, the value is initialized to be equal to the minimum value. the current value of the progress bar
See Also:   SProgressBar.setValue
See Also:   BoundedRangeModel.getValue



isIndeterminate
public boolean isIndeterminate()(Code)
Returns the value of the indeterminate property. the value of the indeterminate property or normal (false)?
See Also:   SProgressBar.setIndeterminate



isStringPainted
public boolean isStringPainted()(Code)
Returns the value of the stringPainted property. the value of the stringPainted property
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.setString



removeChangeListener
public void removeChangeListener(ChangeListener l)(Code)
Removes a ChangeListener from the progress bar.
Parameters:
  l - the ChangeListener to remove



setCG
public void setCG(ProgressBarCG cg)(Code)
Sets the look-and-feel object that renders this component.
Parameters:
  cg - a ProgressBarCG object



setFilledColor
public void setFilledColor(Color c)(Code)
Sets the color in which the fille region is painted
Parameters:
  c - a Color value



setIndeterminate
public void setIndeterminate(boolean newValue)(Code)
Sets the indeterminate property of the progress bar, which determines whether the progress bar is in determinate or indeterminate mode. By default, the progress bar is determinate. An indeterminate progress bar continuously displays animation indicating that an operation of unknown length is occurring. Some look and feels might not support indeterminate progress bars; they will ignore this property.
Parameters:
  newValue - true if the progress bar should change to indeterminate mode;false if it should revert to normal.
See Also:   SProgressBar.isIndeterminate()



setMaximum
public void setMaximum(int n)(Code)
Sets the progress bar's maximum value (stored in the progress bar's data model) to n. The underlying BoundedRangeModel handles any mathematical issues arising from assigning faulty values.

If the maximum value is different from the previous maximum, all change listeners are notified.
Parameters:
  n - the new maximumdescription: The progress bar's maximum value.
See Also:   SProgressBar.getMaximum
See Also:   SProgressBar.addChangeListener
See Also:   BoundedRangeModel.setMaximum




setMinimum
public void setMinimum(int n)(Code)
Sets the progress bar's minimum value (stored in the progress bar's data model) to n. The data model (a BoundedRangeModel instance) handles any mathematical issues arising from assigning faulty values.

If the minimum value is different from the previous minimum, all change listeners are notified.
Parameters:
  n - the new minimumdescription: The progress bar's minimum value.
See Also:   SProgressBar.getMinimum
See Also:   SProgressBar.addChangeListener
See Also:   BoundedRangeModel.setMinimum




setModel
public void setModel(BoundedRangeModel newModel)(Code)
Sets the data model used by the SProgressBar.
Parameters:
  newModel - the BoundedRangeModel to usedescription: The data model used by the SProgressBar.



setOrientation
public void setOrientation(int newOrientation)(Code)
Sets the progress bar's orientation to newOrientation, which must be SProgressBar.VERTICAL or SProgressBar.HORIZONTAL. The default orientation is HORIZONTAL.
Parameters:
  newOrientation - HORIZONTAL or VERTICAL
throws:
  IllegalArgumentException - if newOrientationis an illegal value
See Also:   SProgressBar.getOrientation



setProgressBarDimension
public void setProgressBarDimension(SDimension dimension)(Code)
Sets the size of the graphically rendered progress bar element.
Parameters:
  dimension - the size as dimension



setString
public void setString(String s)(Code)
Sets the value of the progress string. By default, this string is null. If you have provided a custom progress string and want to revert to the built-in behavior, set the string back to null. If you are providing a custom progress string by overriding this method, make sure that you call setString before calling getString. The progress string is painted only if the isStringPainted method returns true.
Parameters:
  s - the value of the percent string
See Also:   SProgressBar.getString
See Also:   SProgressBar.setStringPainted
See Also:   SProgressBar.isStringPainted



setStringPainted
public void setStringPainted(boolean b)(Code)
Sets the value of the stringPainted property, which determines whether the progress bar should render a progress string. The default is false: no string is painted. Some look and feels might not support progress strings or might support them only when the progress bar is in determinate mode.
Parameters:
  b - true if the progress bar should render a string
See Also:   SProgressBar.isStringPainted
See Also:   SProgressBar.setString



setUnfilledColor
public void setUnfilledColor(Color c)(Code)
Sets the color in which the unfilled region is painted
Parameters:
  c - a Color value



setValue
public void setValue(int n)(Code)
Sets the progress bar's current value (stored in the progress bar's data model) to n. The data model (a BoundedRangeModel instance) handles any mathematical issues arising from assigning faulty values.

If the new value is different from the previous value, all change listeners are notified.
Parameters:
  n - the new valuedescription: The progress bar's current value.
See Also:   SProgressBar.getValue
See Also:   BoundedRangeModel.setValue




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.