javax.faces.webapp
Class FacetTag

java.lang.Object
  extended by TagSupport
      extended by javax.faces.webapp.FacetTag

public class FacetTag
extends TagSupport

FacetTag is the JSP mechanism for denoting a UIComponent is to be added as a facet to the component associated with its parent.

A FacetTag must have one and only one child. This child must be a UIComponentTag instance representing a single UIComponent instance.


Constructor Summary
FacetTag()
           
 
Method Summary
 int doStartTag()
          Return EVAL_BODY_INCLUDE to cause nested body content to be evaluated.
 java.lang.String getName()
          Return the name to be assigned to this facet.
 void release()
          Release any resources allocated by this tag instance.
 void setName(java.lang.String name)
          Set the name to be assigned to this facet.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FacetTag

public FacetTag()
Method Detail

getName

public java.lang.String getName()

Return the name to be assigned to this facet.


setName

public void setName(java.lang.String name)

Set the name to be assigned to this facet.

Parameters:
name - The new facet name

release

public void release()

Release any resources allocated by this tag instance.


doStartTag

public int doStartTag()
               throws JspException

Return EVAL_BODY_INCLUDE to cause nested body content to be evaluated.

Throws:
JspException


Copyright 2002-2011 Oracle America Inc, Inc. All Rights Reserved.