Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.newsfighter.layout
Interface Skinnable  view Skinnable download Skinnable.java


public interface Skinnable

Skinnable provides a common interface for all of the layout component classes.


Method Summary
 java.lang.String getEnclosingSkin()
           Gets the name of the enclosing Tag's skin.
 javax.servlet.jsp.tagext.Tag getEnclosingTag()
           This invokes getAncestorWithClass() and returns the enclosing Tag.
 java.lang.String getSkin()
           This method returns the value of this.skin.
 SkinFactory getSkinFactory()
           Returns a reference to the SkinFactory JMX service
 void initSkinFactory()
           If getSkinFactory cannot find the JMX service, this initializes the SkinFactory service.
 void setSkin(java.lang.String skinName)
           This method interfaces with the Servlet/JSP container.
 

Method Detail

getSkin

public java.lang.String getSkin()
This method returns the value of this.skin.


setSkin

public void setSkin(java.lang.String skinName)
This method interfaces with the Servlet/JSP container. Its contents are set by the end-user in the JSP tag.


getSkinFactory

public SkinFactory getSkinFactory()
Returns a reference to the SkinFactory JMX service


initSkinFactory

public void initSkinFactory()
If getSkinFactory cannot find the JMX service, this initializes the SkinFactory service.


getEnclosingSkin

public java.lang.String getEnclosingSkin()
Gets the name of the enclosing Tag's skin.


getEnclosingTag

public javax.servlet.jsp.tagext.Tag getEnclosingTag()
This invokes getAncestorWithClass() and returns the enclosing Tag. the implementation also determines the type of enclosing tag, whether it be a ManagerTag, a PanelsTag or whatnot. Error checking should also be handled by the implementation.