Package org.apache.jasper.compiler
Class Node.ChildInfo
- java.lang.Object
-
- org.apache.jasper.compiler.Node.ChildInfo
-
- Enclosing class:
- Node
public static class Node.ChildInfo extends java.lang.ObjectCollected information about child elements. Used by nodes like CustomTag, JspBody, and NamedAttribute. The information is set in the Collector.
-
-
Constructor Summary
Constructors Constructor Description ChildInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasIncludeAction()booleanhasParamAction()booleanhasScriptingVars()booleanhasSetProperty()booleanhasUseBean()booleanisScriptless()voidsetHasIncludeAction(boolean i)voidsetHasParamAction(boolean i)voidsetHasScriptingVars(boolean s)voidsetHasSetProperty(boolean s)voidsetHasUseBean(boolean u)voidsetScriptless(boolean s)
-
-
-
Method Detail
-
setScriptless
public void setScriptless(boolean s)
-
isScriptless
public boolean isScriptless()
-
setHasUseBean
public void setHasUseBean(boolean u)
-
hasUseBean
public boolean hasUseBean()
-
setHasIncludeAction
public void setHasIncludeAction(boolean i)
-
hasIncludeAction
public boolean hasIncludeAction()
-
setHasParamAction
public void setHasParamAction(boolean i)
-
hasParamAction
public boolean hasParamAction()
-
setHasSetProperty
public void setHasSetProperty(boolean s)
-
hasSetProperty
public boolean hasSetProperty()
-
setHasScriptingVars
public void setHasScriptingVars(boolean s)
-
hasScriptingVars
public boolean hasScriptingVars()
-
-