Java Doc for STabbedPane.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.SContainer
         org.wings.STabbedPane

STabbedPane
public class STabbedPane extends SContainer implements LowLevelEventListener(Code)
Shows one tab, usually a panel, at a time and allows switching between them.
author:
   Armin Haaf,
author:
   Andre Lison


Field Summary
final public static  SelectorSELECTOR_CONTENT
     A Pseudo selector addressing the container area of this container.
final public static  SelectorSELECTOR_DISABLED_TAB
    
final public static  SelectorSELECTOR_SELECTED_TAB
    
final public static  SelectorSELECTOR_TABS
     A Pseudo CSS selector addressing the area which contains the tab buttons.
final public static  SelectorSELECTOR_UNSELECTED_TAB
    
protected  intmaxTabsPerLine
    
protected  SingleSelectionModelmodel
    
 ArrayListpages
    
protected  intselectedIndex
     Number of selected tab.
protected  inttabPlacement
     Where the tabs are placed.

Constructor Summary
public  STabbedPane()
     Creates a new empty Tabbed Pane with the tabs at the top.
public  STabbedPane(int tabPlacement)
     Creates an empty TabbedPane with the specified tab placement of either: TOP, BOTTOM, LEFT, or RIGHT.

Method Summary
public  SComponentadd(String title, SComponent component)
     Adds a component with the specified tab title.
public  voidaddChangeListener(ChangeListener cl)
     Add a listener to the list of change listeners.
public  SComponentaddComponent(SComponent component, Object constraints)
     Adds a component at the specified tab index.
public  SComponentaddComponent(SComponent component, Object constraints, int index)
     Adds a component at the specified tab index.
public  voidaddTab(String title, SIcon icon, SComponent component, String tip)
     Adds a component and tip represented by a title and/or icon, either of which can be null.
public  voidaddTab(String title, SIcon icon, SComponent component)
     Adds a component represented by a title and/or icon, either of which can be null.
public  voidaddTab(String title, SComponent component)
     Adds a component represented by a title and no icon.
public  voidfireFinalEvents()
     Sets selection and fire changeevents, if user changed tab selection.
public  voidfireIntermediateEvents()
     Does nothin'.
protected  voidfireStateChanged()
     Fire ChangeEvents at all registered change listeners.
public  ColorgetBackgroundAt(int index)
     Returns the tab background color at index.
public  SComponentgetComponentAt(int index)
     Returns the component at index.
public  SIcongetDisabledIconAt(int index)
     Returns the tab disabled icon at index.
public  ColorgetForegroundAt(int index)
     Returns the tab foreground color at index.
public  SIcongetIconAt(int index)
     Returns the tab icon at index.
public  intgetMaxTabsPerLine()
     Returns the maximum tabs per line.
public  SingleSelectionModelgetModel()
     Returns the model associated with this tabbedpane.
public  SComponentgetSelectedComponent()
     Returns the currently selected component for this tabbedpane.
public  intgetSelectedIndex()
     Returns the currently selected index for this tabbedpane.
public  ColorgetSelectionBackground()
     Return the background color.
public  SFontgetSelectionFont()
     Return the font.
public  ColorgetSelectionForeground()
     Return the foreground color.
public  StringgetStyleAt(int index)
     Returns the tab style at index.
public  intgetTabCount()
     Returns the number of tabs in this tabbedpane.
public  intgetTabPlacement()
     Returns the placement of the tabs for this tabbedpane.
public  StringgetTitleAt(int index)
     Returns the tab title at index.
public  StringgetToolTipTextAt(int index)
    
public  intindexOfComponent(SComponent component)
     Returns the index of the tab for the specified component.
public  intindexOfTab(String title)
     Returns the first tab index with a given title, Returns -1 if no tab has this title.
public  intindexOfTab(SIcon icon)
     Returns the first tab index with a given icon.
public  voidinsertTab(String title, SIcon icon, SComponent component, String tip, int index)
     Inserts a component, at index, represented by a title and/or icon, either of which may be null.
public  booleanisEnabledAt(int index)
     Returns whether or not the tab at index is currently enabled.
public  booleanisEpochCheckEnabled()
    
public  voidprocessLowLevelEvent(String action, String[] values)
     Tab was clicked.
public  voidremove(SComponent component)
     Removes the tab which corresponds to the specified component.
public  voidremoveAllTabs()
    
public  voidremoveChangeListener(ChangeListener cl)
     Remove listener from the list of change listeners.
public  voidremoveTabAt(int index)
     Removes the tab at index.
public  voidsetBackgroundAt(int index, Color background)
     Sets the background color at index to background which can be null, in which case the tab's background color will default to the background color of the tabbedpane.
public  voidsetCG(TabbedPaneCG cg)
    
public  voidsetComponent(int index, SComponent component)
     Sets the component at index to component.
public  voidsetComponentAt(int index, SComponent component)
     Sets the component at index to component which must not be null.
public  voidsetDisabledIconAt(int index, SIcon disabledIcon)
     Sets the disabled icon at index to icon which can be null.
public  voidsetEnabledAt(int index, boolean enabled)
     Sets whether or not the tab at index is enabled.
public  voidsetEpochCheckEnabled(boolean epochCheckEnabled)
    
public  voidsetForegroundAt(int index, Color foreground)
     Sets the foreground color at index to foreground which can be null, in which case the tab's foreground color will default to the foreground color of this tabbedpane.
public  voidsetIconAt(int index, SIcon icon)
     Sets the icon at index to icon which can be null.
public  voidsetMaxTabsPerLine(int tabs)
     Sets the maximum tabs per line.
public  voidsetModel(SingleSelectionModel model)
     Sets the model to be used with this tabbedpane.
public  voidsetParentFrame(SFrame f)
    
public  voidsetSelectedComponent(SComponent c)
     Sets the selected component for this tabbedpane.
public  voidsetSelectedIndex(int index)
     Sets the selected index for this tabbedpane.
public  voidsetSelectionBackground(Color color)
     Set the foreground color.
public  voidsetSelectionFont(SFont font)
     Set the font.
public  voidsetSelectionForeground(Color color)
     Set the foreground color.
public  voidsetStyleAt(int index, String style)
     Sets the style at index to style which can be null, in which case the tab's style will default to the style of this tabbedpane.
public  voidsetTabPlacement(int tabPlacement)
     Sets the tab placement for this tabbedpane.
public  voidsetTitleAt(int index, String title)
     Sets the title at index to title which can be null.
public  voidsetToolTipTextAt(int index, String toolTip)
    

Field Detail
SELECTOR_CONTENT
final public static Selector SELECTOR_CONTENT(Code)
A Pseudo selector addressing the container area of this container. Refer to SComponent.setAttribute(org.wings.style.Selectororg.wings.style.CSSPropertyString)



SELECTOR_DISABLED_TAB
final public static Selector SELECTOR_DISABLED_TAB(Code)
A Pseudo CSS selector addressing the unselected tab Refer to SComponent.setAttribute(org.wings.style.Selectororg.wings.style.CSSPropertyString)



SELECTOR_SELECTED_TAB
final public static Selector SELECTOR_SELECTED_TAB(Code)
A Pseudo CSS selector addressing the selected tab Refer to SComponent.setAttribute(org.wings.style.Selectororg.wings.style.CSSPropertyString)



SELECTOR_TABS
final public static Selector SELECTOR_TABS(Code)
A Pseudo CSS selector addressing the area which contains the tab buttons. Refer to SComponent.setAttribute(org.wings.style.Selectororg.wings.style.CSSPropertyString)



SELECTOR_UNSELECTED_TAB
final public static Selector SELECTOR_UNSELECTED_TAB(Code)
A Pseudo CSS selector addressing the unselected tab Refer to SComponent.setAttribute(org.wings.style.Selectororg.wings.style.CSSPropertyString)



maxTabsPerLine
protected int maxTabsPerLine(Code)
the maximum tabs per line



model
protected SingleSelectionModel model(Code)
The default selection model



pages
ArrayList pages(Code)



selectedIndex
protected int selectedIndex(Code)
Number of selected tab.



tabPlacement
protected int tabPlacement(Code)
Where the tabs are placed.
See Also:   STabbedPane.setTabPlacement




Constructor Detail
STabbedPane
public STabbedPane()(Code)
Creates a new empty Tabbed Pane with the tabs at the top.
See Also:   STabbedPane.addTab



STabbedPane
public STabbedPane(int tabPlacement)(Code)
Creates an empty TabbedPane with the specified tab placement of either: TOP, BOTTOM, LEFT, or RIGHT.
Parameters:
  tabPlacement - the placement for the tabs relative to the content
See Also:   STabbedPane.addTab




Method Detail
add
public SComponent add(String title, SComponent component)(Code)
Adds a component with the specified tab title. Cover method for insertTab().
Parameters:
  title - the title to be displayed in this tab
Parameters:
  component - The component to be displayed when this tab is clicked.
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



addChangeListener
public void addChangeListener(ChangeListener cl)(Code)
Add a listener to the list of change listeners. ChangeListeners are notified, when the tab selection changes.
Parameters:
  cl - add to listener list



addComponent
public SComponent addComponent(SComponent component, Object constraints)(Code)
Adds a component at the specified tab index. If constraints is a String or an Icon, it will be used for the tab title, otherwise the component's name will be used as the tab title. Cover method for insertTab().
Parameters:
  component - The component to be displayed when this tab is clicked.
Parameters:
  constraints - the object to be displayed in the tab
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



addComponent
public SComponent addComponent(SComponent component, Object constraints, int index)(Code)
Adds a component at the specified tab index. If constraints is a String or an Icon, it will be used for the tab title, otherwise the component's name will be used as the tab title. Cover method for insertTab().
Parameters:
  component - The component to be displayed when this tab is clicked.
Parameters:
  constraints - the object to be displayed in the tab
Parameters:
  index - the position to insert this new tab
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



addTab
public void addTab(String title, SIcon icon, SComponent component, String tip)(Code)
Adds a component and tip represented by a title and/or icon, either of which can be null. Cover method for insertTab().
Parameters:
  title - the title to be displayed in this tab
Parameters:
  icon - the icon to be displayed in this tab
Parameters:
  component - The component to be displayed when this tab is clicked.
Parameters:
  tip - the tooltip to be displayed for this tab
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



addTab
public void addTab(String title, SIcon icon, SComponent component)(Code)
Adds a component represented by a title and/or icon, either of which can be null. Cover method for insertTab().
Parameters:
  title - the title to be displayed in this tab
Parameters:
  icon - the icon to be displayed in this tab
Parameters:
  component - The component to be displayed when this tab is clicked.
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



addTab
public void addTab(String title, SComponent component)(Code)
Adds a component represented by a title and no icon. Cover method for insertTab().
Parameters:
  title - the title to be displayed in this tab
Parameters:
  component - The component to be displayed when this tab is clicked.
See Also:   STabbedPane.insertTab
See Also:   STabbedPane.removeTabAt



fireFinalEvents
public void fireFinalEvents()(Code)
Sets selection and fire changeevents, if user changed tab selection.



fireIntermediateEvents
public void fireIntermediateEvents()(Code)
Does nothin'.



fireStateChanged
protected void fireStateChanged()(Code)
Fire ChangeEvents at all registered change listeners.



getBackgroundAt
public Color getBackgroundAt(int index)(Code)
Returns the tab background color at index.
See Also:   STabbedPane.setBackgroundAt



getComponentAt
public SComponent getComponentAt(int index)(Code)
Returns the component at index.
See Also:   STabbedPane.setComponentAt



getDisabledIconAt
public SIcon getDisabledIconAt(int index)(Code)
Returns the tab disabled icon at index.
See Also:   STabbedPane.setDisabledIconAt



getForegroundAt
public Color getForegroundAt(int index)(Code)
Returns the tab foreground color at index.
See Also:   STabbedPane.setForegroundAt



getIconAt
public SIcon getIconAt(int index)(Code)
Returns the tab icon at index.
See Also:   STabbedPane.setIconAt



getMaxTabsPerLine
public int getMaxTabsPerLine()(Code)
Returns the maximum tabs per line.



getModel
public SingleSelectionModel getModel()(Code)
Returns the model associated with this tabbedpane.
See Also:   STabbedPane.setModel



getSelectedComponent
public SComponent getSelectedComponent()(Code)
Returns the currently selected component for this tabbedpane. Returns null if there is no currently selected tab. the component corresponding to the selected tab
See Also:   STabbedPane.setSelectedComponent



getSelectedIndex
public int getSelectedIndex()(Code)
Returns the currently selected index for this tabbedpane. Returns -1 if there is no currently selected tab. the index of the selected tab
See Also:   STabbedPane.setSelectedIndex



getSelectionBackground
public Color getSelectionBackground()(Code)
Return the background color. the background color



getSelectionFont
public SFont getSelectionFont()(Code)
Return the font. the font



getSelectionForeground
public Color getSelectionForeground()(Code)
Return the foreground color. the foreground color



getStyleAt
public String getStyleAt(int index)(Code)
Returns the tab style at index.
See Also:   STabbedPane.setStyleAt



getTabCount
public int getTabCount()(Code)
Returns the number of tabs in this tabbedpane. an int specifying the number of tabbed pages



getTabPlacement
public int getTabPlacement()(Code)
Returns the placement of the tabs for this tabbedpane.
See Also:   STabbedPane.setTabPlacement



getTitleAt
public String getTitleAt(int index)(Code)
Returns the tab title at index.
See Also:   STabbedPane.setTitleAt



getToolTipTextAt
public String getToolTipTextAt(int index)(Code)
Get the tooltip text from tab at index the text or null if not set.



indexOfComponent
public int indexOfComponent(SComponent component)(Code)
Returns the index of the tab for the specified component. Returns -1 if there is no tab for this component.
Parameters:
  component - the component for the tab



indexOfTab
public int indexOfTab(String title)(Code)
Returns the first tab index with a given title, Returns -1 if no tab has this title.
Parameters:
  title - the title for the tab



indexOfTab
public int indexOfTab(SIcon icon)(Code)
Returns the first tab index with a given icon. Returns -1 if no tab has this icon.
Parameters:
  icon - the icon for the tab



insertTab
public void insertTab(String title, SIcon icon, SComponent component, String tip, int index)(Code)
Inserts a component, at index, represented by a title and/or icon, either of which may be null. Uses java.util.ArrayList internally, see insertElementAt() for details of insertion conventions.
Parameters:
  title - the title to be displayed in this tab
Parameters:
  icon - the icon to be displayed in this tab
Parameters:
  component - The component to be displayed when this tab is clicked.
Parameters:
  tip - the tooltip to be displayed for this tab
Parameters:
  index - the position to insert this new tab
See Also:   STabbedPane.addTab
See Also:   STabbedPane.removeTabAt



isEnabledAt
public boolean isEnabledAt(int index)(Code)
Returns whether or not the tab at index is currently enabled.
See Also:   STabbedPane.setEnabledAt



isEpochCheckEnabled
public boolean isEpochCheckEnabled()(Code)

See Also:   LowLevelEventListener.isEpochCheckEnabled



processLowLevelEvent
public void processLowLevelEvent(String action, String[] values)(Code)
Tab was clicked.
See Also:   LowLevelEventListener.processLowLevelEvent(StringString[])



remove
public void remove(SComponent component)(Code)
Removes the tab which corresponds to the specified component.
Parameters:
  component - the component to remove from the tabbedpane
See Also:   STabbedPane.addTab
See Also:   STabbedPane.removeTabAt



removeAllTabs
public void removeAllTabs()(Code)



removeChangeListener
public void removeChangeListener(ChangeListener cl)(Code)
Remove listener from the list of change listeners. ChangeListeners are notified, when the tab selection changes.
Parameters:
  cl - remove from listener list



removeTabAt
public void removeTabAt(int index)(Code)
Removes the tab at index. After the component associated with index is removed, its visibility is reset to true to ensure it will be visible if added to other containers.
Parameters:
  index - the index of the tab to be removed
See Also:   STabbedPane.addTab
See Also:   STabbedPane.insertTab



setBackgroundAt
public void setBackgroundAt(int index, Color background)(Code)
Sets the background color at index to background which can be null, in which case the tab's background color will default to the background color of the tabbedpane. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the background should be set
Parameters:
  background - the color to be displayed in the tab's background
See Also:   STabbedPane.getBackgroundAt



setCG
public void setCG(TabbedPaneCG cg)(Code)



setComponent
public void setComponent(int index, SComponent component)(Code)
Sets the component at index to component. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where this component is being placed
Parameters:
  component - the component for the tab
See Also:   STabbedPane.getComponent(int)



setComponentAt
public void setComponentAt(int index, SComponent component)(Code)
Sets the component at index to component which must not be null. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the title should be set
Parameters:
  component - the component for the tab
See Also:   STabbedPane.getComponentAt



setDisabledIconAt
public void setDisabledIconAt(int index, SIcon disabledIcon)(Code)
Sets the disabled icon at index to icon which can be null. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the disabled icon should be set
Parameters:
  disabledIcon - the icon to be displayed in the tab when disabled
See Also:   STabbedPane.getDisabledIconAt



setEnabledAt
public void setEnabledAt(int index, boolean enabled)(Code)
Sets whether or not the tab at index is enabled. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index which should be enabled/disabled
Parameters:
  enabled - whether or not the tab should be enabled
See Also:   STabbedPane.isEnabledAt



setEpochCheckEnabled
public void setEpochCheckEnabled(boolean epochCheckEnabled)(Code)

See Also:   LowLevelEventListener.isEpochCheckEnabled



setForegroundAt
public void setForegroundAt(int index, Color foreground)(Code)
Sets the foreground color at index to foreground which can be null, in which case the tab's foreground color will default to the foreground color of this tabbedpane. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the foreground should be set
Parameters:
  foreground - the color to be displayed as the tab's foreground
See Also:   STabbedPane.getForegroundAt



setIconAt
public void setIconAt(int index, SIcon icon)(Code)
Sets the icon at index to icon which can be null. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the icon should be set
Parameters:
  icon - the icon to be displayed in the tab
See Also:   STabbedPane.getIconAt



setMaxTabsPerLine
public void setMaxTabsPerLine(int tabs)(Code)
Sets the maximum tabs per line. tabs >= 0: No maximum.



setModel
public void setModel(SingleSelectionModel model)(Code)
Sets the model to be used with this tabbedpane.
Parameters:
  model - the model to be used
See Also:   STabbedPane.getModel



setParentFrame
public void setParentFrame(SFrame f)(Code)
Set the parent frame of this tabbed pane
Parameters:
  f - the parent frame.



setSelectedComponent
public void setSelectedComponent(SComponent c)(Code)
Sets the selected component for this tabbedpane. This will automatically set the selectedIndex to the index corresponding to the specified component.
See Also:   STabbedPane.getSelectedComponent



setSelectedIndex
public void setSelectedIndex(int index)(Code)
Sets the selected index for this tabbedpane.
See Also:   STabbedPane.getSelectedIndex
See Also:   SingleSelectionModel.setSelectedIndex



setSelectionBackground
public void setSelectionBackground(Color color)(Code)
Set the foreground color.
Parameters:
  color - the new foreground color



setSelectionFont
public void setSelectionFont(SFont font)(Code)
Set the font.
Parameters:
  font - the new font



setSelectionForeground
public void setSelectionForeground(Color color)(Code)
Set the foreground color.
Parameters:
  color - the new foreground color



setStyleAt
public void setStyleAt(int index, String style)(Code)
Sets the style at index to style which can be null, in which case the tab's style will default to the style of this tabbedpane. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the style should be set
Parameters:
  style - the style to be used as the tab's style
See Also:   STabbedPane.getStyleAt



setTabPlacement
public void setTabPlacement(int tabPlacement)(Code)
Sets the tab placement for this tabbedpane. Possible values are:
  • SConstants.TOP
  • SConstants.BOTTOM
  • SConstants.LEFT
  • SConstants.RIGHT
The default value is TOP.
Parameters:
  tabPlacement - the placement for the tabs relative to the content



setTitleAt
public void setTitleAt(int index, String title)(Code)
Sets the title at index to title which can be null. An internal exception is raised if there is no tab at that index.
Parameters:
  index - the tab index where the title should be set
Parameters:
  title - the title to be displayed in the tab
See Also:   STabbedPane.getTitleAt



setToolTipTextAt
public void setToolTipTextAt(int index, String toolTip)(Code)
Set the tooltip text for tab at index
Parameters:
  index - set the tooltip for this tab



Methods inherited from org.wings.SContainer
public SComponent add(SComponent c)(Code)(Java Doc)
public void add(SComponent c, Object constraint)(Code)(Java Doc)
public SComponent add(SComponent c, int index)(Code)(Java Doc)
public void add(SComponent c, Object constraint, int index)(Code)(Java Doc)
public SComponent addComponent(SComponent c)(Code)(Java Doc)
public SComponent addComponent(SComponent c, Object constraint)(Code)(Java Doc)
public SComponent addComponent(SComponent c, int index)(Code)(Java Doc)
public SComponent addComponent(SComponent c, Object constraint, int index)(Code)(Java Doc)
public void addContainerListener(SContainerListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
protected void fireContainerEvent(int type, SComponent comp)(Code)(Java Doc)
public SComponent getComponent(int i)(Code)(Java Doc)
public int getComponentCount()(Code)(Java Doc)
protected ArrayList getComponentList()(Code)(Java Doc)
public SComponent[] getComponents()(Code)(Java Doc)
public Object getConstraintAt(int i)(Code)(Java Doc)
protected ArrayList getConstraintList()(Code)(Java Doc)
public SLayoutManager getLayout()(Code)(Java Doc)
public void invite(ComponentVisitor visitor) throws Exception(Code)(Java Doc)
public void inviteEachComponent(ComponentVisitor visitor) throws Exception(Code)(Java Doc)
protected boolean isShowingChildren()(Code)(Java Doc)
protected void processContainerEvent(SContainerListener listener, SContainerEvent e)(Code)(Java Doc)
public void remove(SComponent c)(Code)(Java Doc)
public void remove(int index)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public void removeContainerListener(SContainerListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void setCG(ContainerCG cg)(Code)(Java Doc)
public void setLayout(SLayoutManager l)(Code)(Java Doc)
protected void setParentFrame(SFrame f)(Code)(Java Doc)
public void updateCG()(Code)(Java Doc)

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.