Java Doc for HtmlTabFolder.java in  » J2EE » Sofia » com » salmonllc » html » 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 » J2EE » Sofia » com.salmonllc.html 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.salmonllc.html.HtmlComponent
      com.salmonllc.html.HtmlTabFolder

HtmlTabFolder
public class HtmlTabFolder extends HtmlComponent (Code)
This type implements a navigation bar which resembles a tab folder. Each tab entry contains a display component, typically text, and an HTML link.

Inner Class :class TabInfo

Field Summary
protected  String_imagePath
    
 String_theme
    
 booleanenabledTab
    

Constructor Summary
public  HtmlTabFolder(String name, HtmlPage p)
     Constructs a new HtmlTabFolder to place in the given page.
public  HtmlTabFolder(String name, String theme, HtmlPage p)
     Constructs a new HtmlTabFolder to place in the given page.

Method Summary
public  voidaddTab(HtmlComponent item, String href, String target, boolean is_active)
     This method adds a tab entry to the folder.
public  voidaddTab(String text, String href)
     This method adds a tab entry to the folder.
public  voidaddTab(String text, String href, String target, boolean is_active)
     This method adds a tab to the folder.
public  voidgenerateHTML(java.io.PrintWriter p, int rowNo)
    
public  StringgetActiveHref()
     This method returns the href corresponding to active tab, or null if no active tab.
public  intgetActiveTab()
    
public  StringgetImagePath()
    
public  StringgetTabActiveColor()
     This method returns the HTML color value for the active tab background.
public  StringgetTabBorderImage()
     This method returns the name of the image file used to display the tab border.
public  StringgetTabColor()
     This method returns the HTML color value used for the (non-active) tab background.
public  intgetTabHeight()
     This method returns the height in pixels of the tab folder, not counting the optional stripe.
public  StringgetTabLeftImage()
     This method returns the name of the image file for the left side of each tab.
public  StringgetTabRightImage()
     This method returns the name of the image file for the right side of each tab.
public  HtmlStylegetTabStyle()
     This method returns the HTML color value used for the (non-active) tab background.
public  StringgetTheme()
     This method returns the property theme for the component.
public  StringgetWidth()
    
public  voidsetActiveHref(String href)
     This method sets the tab with the given href to be "active", i.e.
public  voidsetActiveTab(int tabNr)
    
public  voidsetEnabledTab(boolean enabled)
    
public  voidsetImagePath(String _imagePath)
    
public  voidsetTabActiveColor(String value)
     This method sets the HTML color value for the active tab background.
public  voidsetTabActiveFont(String tagStart, String tagEnd)
     This method sets the HTML font tags to use for text in the active tab.
public  voidsetTabBorderImage(String image)
     This method sets the image file used for tab borders.
public  voidsetTabColor(String value)
     This method sets the HTML color value for the (non-active) tab background.
public  voidsetTabFont(String tagStart, String tagEnd)
     This method sets the HTML font tags for text in each (non-active) tab.
public  voidsetTabHeight(int height)
     This method sets the height in pixels of the tab folder, not counting the optional stripe.
public  voidsetTabLeftImage(String image)
     This method sets the image file for the left side of each tab.
public  voidsetTabRightImage(String image)
     This method sets the image file for the right side of each tab.
public  voidsetTabStyle(String sStyle)
     This method sets the HTML color value for the active tab background.
public  voidsetTheme(String theme)
     This method sets the property theme for the component.
public  voidsetWidth(String _width)
    
public  voidshowStripe(boolean show)
     This method determines whether a horizontal stripe below the tab folder, in the same color as the active background, is displayed.

Field Detail
_imagePath
protected String _imagePath(Code)



_theme
String _theme(Code)



enabledTab
boolean enabledTab(Code)




Constructor Detail
HtmlTabFolder
public HtmlTabFolder(String name, HtmlPage p)(Code)
Constructs a new HtmlTabFolder to place in the given page.
Parameters:
  name - java.lang.String
Parameters:
  p - com.salmonllc.html.HtmlPage



HtmlTabFolder
public HtmlTabFolder(String name, String theme, HtmlPage p)(Code)
Constructs a new HtmlTabFolder to place in the given page.
Parameters:
  name - java.lang.String
Parameters:
  theme - The theme to use for loading properties
Parameters:
  p - com.salmonllc.html.HtmlPage




Method Detail
addTab
public void addTab(HtmlComponent item, String href, String target, boolean is_active)(Code)
This method adds a tab entry to the folder.
Parameters:
  item - HtmlComponent The component that will appear in the tab
Parameters:
  href - java.lang.String The href for the tab link
Parameters:
  target - java.lang.String Target for the href, optionally null
Parameters:
  is_active - boolean True if this tab is active (displayed in the active color).



addTab
public void addTab(String text, String href)(Code)
This method adds a tab entry to the folder. Text is displayed; target of the href is null; tab is not active.
Parameters:
  text - Text to display in the tab
Parameters:
  href - Href to use in the link



addTab
public void addTab(String text, String href, String target, boolean is_active)(Code)
This method adds a tab to the folder.
Parameters:
  text - java.lang.String The text that will appear in the tab
Parameters:
  href - java.lang.String The href for the tab link
Parameters:
  target - java.lang.String Target for the href, optionally null
Parameters:
  is_active - boolean True if this tab is active (use active color)



generateHTML
public void generateHTML(java.io.PrintWriter p, int rowNo) throws Exception(Code)



getActiveHref
public String getActiveHref()(Code)
This method returns the href corresponding to active tab, or null if no active tab.



getActiveTab
public int getActiveTab()(Code)
get active tab number



getImagePath
public String getImagePath()(Code)



getTabActiveColor
public String getTabActiveColor()(Code)
This method returns the HTML color value for the active tab background.



getTabBorderImage
public String getTabBorderImage()(Code)
This method returns the name of the image file used to display the tab border.



getTabColor
public String getTabColor()(Code)
This method returns the HTML color value used for the (non-active) tab background. java.lang.String



getTabHeight
public int getTabHeight()(Code)
This method returns the height in pixels of the tab folder, not counting the optional stripe.



getTabLeftImage
public String getTabLeftImage()(Code)
This method returns the name of the image file for the left side of each tab. java.lang.String



getTabRightImage
public String getTabRightImage()(Code)
This method returns the name of the image file for the right side of each tab. java.lang.String



getTabStyle
public HtmlStyle getTabStyle()(Code)
This method returns the HTML color value used for the (non-active) tab background. java.lang.String



getTheme
public String getTheme()(Code)
This method returns the property theme for the component.



getWidth
public String getWidth()(Code)



setActiveHref
public void setActiveHref(String href)(Code)
This method sets the tab with the given href to be "active", i.e. displayed using the active display attributes.
Parameters:
  href - java.lang.String



setActiveTab
public void setActiveTab(int tabNr)(Code)
Set active tab number



setEnabledTab
public void setEnabledTab(boolean enabled)(Code)



setImagePath
public void setImagePath(String _imagePath)(Code)



setTabActiveColor
public void setTabActiveColor(String value)(Code)
This method sets the HTML color value for the active tab background.
Parameters:
  value - java.lang.String



setTabActiveFont
public void setTabActiveFont(String tagStart, String tagEnd)(Code)
This method sets the HTML font tags to use for text in the active tab.
Parameters:
  tagStart - java.lang.String Start font tag
Parameters:
  tagEnd - java.lang.String End font tag



setTabBorderImage
public void setTabBorderImage(String image)(Code)
This method sets the image file used for tab borders.
Parameters:
  image - java.lang.String



setTabColor
public void setTabColor(String value)(Code)
This method sets the HTML color value for the (non-active) tab background.
Parameters:
  value - java.lang.String



setTabFont
public void setTabFont(String tagStart, String tagEnd)(Code)
This method sets the HTML font tags for text in each (non-active) tab.
Parameters:
  tagStart - java.lang.String Start font tag
Parameters:
  tagEnd - java.lang.String End font tag



setTabHeight
public void setTabHeight(int height)(Code)
This method sets the height in pixels of the tab folder, not counting the optional stripe.
Parameters:
  height - int



setTabLeftImage
public void setTabLeftImage(String image)(Code)
This method sets the image file for the left side of each tab.
Parameters:
  image - java.lang.String



setTabRightImage
public void setTabRightImage(String image)(Code)
This method sets the image file for the right side of each tab.
Parameters:
  image - java.lang.String



setTabStyle
public void setTabStyle(String sStyle)(Code)
This method sets the HTML color value for the active tab background.



setTheme
public void setTheme(String theme)(Code)
This method sets the property theme for the component.
Parameters:
  theme - The theme to use.



setWidth
public void setWidth(String _width)(Code)



showStripe
public void showStripe(boolean show)(Code)
This method determines whether a horizontal stripe below the tab folder, in the same color as the active background, is displayed.
Parameters:
  show - boolean



Fields inherited from com.salmonllc.html.HtmlComponent
final public static int DISABLED_ATTRIBUTE_USE_NEVER(Code)(Java Doc)
final public static int DISABLED_ATTRIBUTE_USE_ON_SUPPORTED_BROWSERS(Code)(Java Doc)
final public static int DISABLED_ATTRIBUTE_USE_SYSTEM_DEFAULT(Code)(Java Doc)
final public static int EVENT_NONE(Code)(Java Doc)
final public static int EVENT_OTHER(Code)(Java Doc)
final public static int EVENT_SUBMIT(Code)(Java Doc)
protected String _class(Code)(Java Doc)
String _fullName(Code)(Java Doc)
protected boolean _generateNewline(Code)(Java Doc)
String _name(Code)(Java Doc)
protected HtmlComponent _parent(Code)(Java Doc)
protected boolean _visible(Code)(Java Doc)
final protected static boolean debug(Code)(Java Doc)

Methods inherited from com.salmonllc.html.HtmlComponent
public void doBinding() throws Exception(Code)(Java Doc)
public String encodeURL(String url)(Code)(Java Doc)
public StringBuffer encodeURL(StringBuffer url)(Code)(Java Doc)
public boolean executeEvent(int eventType) throws Exception(Code)(Java Doc)
public static String fixSpecialHTMLCharacters(String input)(Code)(Java Doc)
abstract public void generateHTML(PrintWriter p, int rowNo) throws Exception(Code)(Java Doc)
public void generateHTML(PrintWriter p, int rowStart, int rowEnd) throws Exception(Code)(Java Doc)
protected String generateImageURL()(Code)(Java Doc)
public void generateInitialHTML(PrintWriter p) throws Exception(Code)(Java Doc)
public String getClassName()(Code)(Java Doc)
public String getDataSource()(Code)(Java Doc)
public int getFormIndex()(Code)(Java Doc)
public String getFormString()(Code)(Java Doc)
public String getFullName()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public HtmlPage getPage()(Code)(Java Doc)
public HtmlComponent getParent()(Code)(Java Doc)
protected String getPortletNameSpace()(Code)(Java Doc)
protected String getSiteMapEntryName(String url)(Code)(Java Doc)
public String getTheme()(Code)(Java Doc)
public int getUseDisabledAttribute()(Code)(Java Doc)
public boolean getVisible()(Code)(Java Doc)
public boolean getVisible(boolean checkParents)(Code)(Java Doc)
public boolean processParms(Hashtable parms, int rowNo) throws Exception(Code)(Java Doc)
public void reset()(Code)(Java Doc)
public void setClassName(String sClass)(Code)(Java Doc)
public void setDataSource(String dataSource)(Code)(Java Doc)
public void setFormIndex(int formIndex)(Code)(Java Doc)
public void setGenerateNewline(boolean enable)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setPage(HtmlPage p)(Code)(Java Doc)
public void setParent(HtmlComponent parent)(Code)(Java Doc)
public void setTheme(String theme)(Code)(Java Doc)
public void setUseDisabledAttribute(int i)(Code)(Java Doc)
public void setVisible(boolean visible)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public String translateSiteMapURL(String url)(Code)(Java Doc)
protected boolean useDisabledAttribute()(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.