Java Doc for TabContainer.java in  » Portal » Open-Portal » com » sun » portal » providers » containers » jsp » tab » 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 » Portal » Open Portal » com.sun.portal.providers.containers.jsp.tab 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.portal.providers.containers.jsp.tab.TabContainer

All known Subclasses:   com.sun.portal.providers.containers.template.tab.TemplateTabContainerProvider,  com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider,
TabContainer
public interface TabContainer (Code)
TabContainer defines the interface for implementing a Tab Container provider. A TabContainerProvider must implement this interface. This interface contains methods to query information about a TabContainer and to set the properties of a TabContainer




Method Summary
public  ListgetAvailableTabs()
     Gets the List of available tabs.
public  UnmodifiableTabgetMakeTab()
     Gets the make tab, the tab spec to be used for 'Make My Own tab' creation by the user .
public  StringgetMakeTabName()
     Gets the make tab channel Name, the tab spec to be used for 'Make My Own tab' creation by the user .
public  StringgetMakeTabProviderName()
     Gets the make tab provider Name, the tab spec to be used for 'Make My Own tab' creation by the user .
public  intgetMaxTabs()
     Gets the maximum number of tabs allowed on the user's desktop.
public  UnmodifiableTabgetSelectedTab()
     Gets the selected tab, the current selected tab in the user's session .
public  StringgetSelectedTabName()
     Gets the selected tab Name, the current selected tab in the user's session .
public  ListgetSelectedTabs()
     Gets the List of selected tabs.
public  UnmodifiableTabgetStartTab()
     Gets the start tab, the tab to be displayed when the user logs in.
public  StringgetStartTabName()
     Gets the start tab Name, the name of the tab to be displayed when the user logs in.
public  UnmodifiableTabgetTab(String name)
     Gets a tab. This method returns an instance of the UnmodifiableTab for the named channel.
public  voidsetSelectedTab(ModifiableTab t)
     Sets the selected tab Name in the session.
public  voidsetSelectedTabName(String tabName)
    
public  voidsetStartTabName()
     Sets the start tab Name, the name of the tab to be displayed when the user logs in.
public  voidsetStartTabName(UnmodifiableTab t)
     Sets the start tab Name, the name of the tab to be displayed when the user logs in.
public  voidsetStartTabName(String name)
     Sets the start tab Name, the name of the tab to be displayed when the user logs in.
public  voidsetTab(ModifiableTab t)
     Sets a tab.
public  voidsetTab(ModifiableTab t, boolean selected)
     Sets a tab.



Method Detail
getAvailableTabs
public List getAvailableTabs() throws ProviderException(Code)
Gets the List of available tabs. The list of available tabs, a list of UnmodifiableTabs.
exception:
  ProviderException - If the list of available tabs cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



getMakeTab
public UnmodifiableTab getMakeTab() throws ProviderException(Code)
Gets the make tab, the tab spec to be used for 'Make My Own tab' creation by the user . The make tab,UnmodifiableTab .
exception:
  ProviderException - If the make tab cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



getMakeTabName
public String getMakeTabName() throws ProviderException(Code)
Gets the make tab channel Name, the tab spec to be used for 'Make My Own tab' creation by the user . The make tab channel name as a string.
exception:
  ProviderException - If the make tab name cannot bereturned.



getMakeTabProviderName
public String getMakeTabProviderName() throws ProviderException(Code)
Gets the make tab provider Name, the tab spec to be used for 'Make My Own tab' creation by the user . The make tab provider name as a string.
exception:
  ProviderException - If the make tab provider name cannot bereturned.



getMaxTabs
public int getMaxTabs() throws ProviderException(Code)
Gets the maximum number of tabs allowed on the user's desktop. the maximum number of tabs.
exception:
  ProviderException - If the maximum number cannot bereturned.



getSelectedTab
public UnmodifiableTab getSelectedTab() throws ProviderException(Code)
Gets the selected tab, the current selected tab in the user's session . The selected tab, UnmodifiableTab.
exception:
  ProviderException - If the selected tab cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



getSelectedTabName
public String getSelectedTabName() throws ProviderException(Code)
Gets the selected tab Name, the current selected tab in the user's session . The selected tab name as a string.
exception:
  ProviderException - If the selected tab name cannot bereturned.



getSelectedTabs
public List getSelectedTabs() throws ProviderException(Code)
Gets the List of selected tabs. The list of selected tabs, a list of UnmodifiableTabs.
exception:
  ProviderException - If the list of selected tabs cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



getStartTab
public UnmodifiableTab getStartTab() throws ProviderException(Code)
Gets the start tab, the tab to be displayed when the user logs in. The start tab, UnmodifiableTab.
exception:
  ProviderException - If the start tab cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



getStartTabName
public String getStartTabName() throws ProviderException(Code)
Gets the start tab Name, the name of the tab to be displayed when the user logs in. The start tab name as a string.
exception:
  ProviderException - If the start tab name cannot bereturned.



getTab
public UnmodifiableTab getTab(String name) throws ProviderException(Code)
Gets a tab. This method returns an instance of the UnmodifiableTab for the named channel.
Parameters:
  name - The name of the channel for which the tab Object is requested. The tab, UnmodifiableTab.
exception:
  ProviderException - If the tab cannot bereturned.
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



setSelectedTab
public void setSelectedTab(ModifiableTab t) throws ProviderException(Code)
Sets the selected tab Name in the session.
Parameters:
  t - A ModifiableTab.Whose tab name needs to be set as the selected tab name.This method sets the current selected tab name to the name of ModifiableTab that was passed in.
exception:
  ProviderException - If the start tab name cannot be set
See Also:   com.sun.portal.providers.containers.jsp.tab.ModifiableTab



setSelectedTabName
public void setSelectedTabName(String tabName) throws ProviderException(Code)
Sets the selected tab Name in the session
Parameters:
  tabName - The name of the channel which needs to be set as the selected tab.This method sets the current selected tab on the user's desktop to the name passed in..
exception:
  ProviderException - If the selected tab name cannot be set.



setStartTabName
public void setStartTabName() throws ProviderException(Code)
Sets the start tab Name, the name of the tab to be displayed when the user logs in. This method sets the current selected tab name in the user's session to the start tab.
exception:
  ProviderException - If the start tab name cannot bereturned.



setStartTabName
public void setStartTabName(UnmodifiableTab t) throws ProviderException(Code)
Sets the start tab Name, the name of the tab to be displayed when the user logs in.
Parameters:
  t - A UnmodifiableTab Whose tab name needs to be set as the start tab name.This method sets the start tab name to the name of UnmodifiableTab that was passed in.
exception:
  ProviderException - If the start tab name cannot be set
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab



setStartTabName
public void setStartTabName(String name) throws ProviderException(Code)
Sets the start tab Name, the name of the tab to be displayed when the user logs in.
Parameters:
  name - The name of the channel which needs to be set as the start tab.This method sets the start tab to the name passed in..
exception:
  ProviderException - If the start tab name cannot be set.



setTab
public void setTab(ModifiableTab t) throws ProviderException(Code)
Sets a tab.
Parameters:
  b - Tab that needs to be set.This method adds the ModifiableTab to the selected tabs list.
exception:
  ProviderException - If the tab cannot be set
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab
See Also:   com.sun.portal.providers.containers.jsp.tab.ModifiableTab



setTab
public void setTab(ModifiableTab t, boolean selected) throws ProviderException(Code)
Sets a tab.
Parameters:
  b - A ModifiableTab Tab that needs to be set.
Parameters:
  selected - If true sets the tab to the current selected tab on the user's desktop.This method adds the ModifiableTab to the selected tabs list
exception:
  ProviderException - If the tab cannot be set
See Also:   com.sun.portal.providers.containers.jsp.tab.UnmodifiableTab
See Also:   com.sun.portal.providers.containers.jsp.tab.ModifiableTab



w_w__w__.__j_a___v_a__2s_.c__om_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.