it.eng.spago.taglib.html
Class HtmlTag

java.lang.Object
  extended by TagSupport
      extended by it.eng.spago.taglib.html.HtmlTag

public class HtmlTag
extends TagSupport

Renders an HTML element with appropriate language attributes if there is a current Locale available in the user's session.

Version:
$Rev: 376841 $ $Date: 2005-08-21 19:08:45 -0400 (Sun, 21 Aug 2005) $

Field Summary
protected  boolean lang
          Are we rendering a lang attribute?
protected  boolean xhtml
          Are we rendering an xhtml page?
 
Constructor Summary
HtmlTag()
           
 
Method Summary
 int doEndTag()
          Process the end of this tag.
 int doStartTag()
          Process the start of this tag.
 boolean getLang()
          Returns true if the tag should render a lang attribute.
 boolean getXhtml()
           
 void release()
          Release any acquired resources.
protected  java.lang.String renderHtmlStartElement()
          Renders an <html> element with appropriate language attributes.
 void setLang(boolean lang)
          Sets whether the tag should render a lang attribute.
 void setXhtml(boolean xhtml)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

xhtml

protected boolean xhtml
Are we rendering an xhtml page?


lang

protected boolean lang
Are we rendering a lang attribute?

Since:
Struts 1.2
Constructor Detail

HtmlTag

public HtmlTag()
Method Detail

getXhtml

public boolean getXhtml()

setXhtml

public void setXhtml(boolean xhtml)

getLang

public boolean getLang()
Returns true if the tag should render a lang attribute.

Since:
Struts 1.2

setLang

public void setLang(boolean lang)
Sets whether the tag should render a lang attribute.

Since:
Struts 1.2

doStartTag

public int doStartTag()
               throws JspException
Process the start of this tag.

Throws:
JspException - if a JSP exception has occurred

renderHtmlStartElement

protected java.lang.String renderHtmlStartElement()
Renders an <html> element with appropriate language attributes.

Since:
Struts 1.2

doEndTag

public int doEndTag()
             throws JspException
Process the end of this tag.

Throws:
JspException - if a JSP exception has occurred

release

public void release()
Release any acquired resources.