Package org.apache.openejb.jee
Class TldAttribute
- java.lang.Object
-
- org.apache.openejb.jee.TldAttribute
-
public class TldAttribute extends Object
web-jsptaglibrary_2_1.xsdJava class for tld-attributeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tld-attributeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/> <element name="name" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/> <element name="required" type="{http://java.sun.com/xml/ns/javaee}generic-booleanType" minOccurs="0"/> <choice> <sequence> <sequence minOccurs="0"> <element name="rtexprvalue" type="{http://java.sun.com/xml/ns/javaee}generic-booleanType"/> <element name="type" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> </sequence> <choice> <element name="deferred-value" type="{http://java.sun.com/xml/ns/javaee}tld-deferred-valueType" minOccurs="0"/> <element name="deferred-method" type="{http://java.sun.com/xml/ns/javaee}tld-deferred-methodType" minOccurs="0"/> </choice> </sequence> <element name="fragment" type="{http://java.sun.com/xml/ns/javaee}generic-booleanType" minOccurs="0"/> </choice> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TldDeferredMethoddeferredMethodprotected TldDeferredValuedeferredValueprotected TextMapdescriptionprotected Stringfragmentprotected Stringidprotected Stringnameprotected Stringrequiredprotected Stringrtexprvalueprotected Stringtype
-
Constructor Summary
Constructors Constructor Description TldAttribute()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TldDeferredMethodgetDeferredMethod()TldDeferredValuegetDeferredValue()StringgetDescription()Text[]getDescriptions()StringgetFragment()StringgetId()StringgetName()StringgetRequired()StringgetRtexprvalue()StringgetType()voidsetDeferredMethod(TldDeferredMethod value)voidsetDeferredValue(TldDeferredValue value)voidsetDescriptions(Text[] text)voidsetFragment(String value)voidsetId(String value)voidsetName(String value)voidsetRequired(String value)voidsetRtexprvalue(String value)voidsetType(String value)
-
-
-
Field Detail
-
description
protected TextMap description
-
name
protected String name
-
required
protected String required
-
rtexprvalue
protected String rtexprvalue
-
type
protected String type
-
deferredValue
protected TldDeferredValue deferredValue
-
deferredMethod
protected TldDeferredMethod deferredMethod
-
fragment
protected String fragment
-
id
protected String id
-
-
Method Detail
-
getDescriptions
public Text[] getDescriptions()
-
setDescriptions
public void setDescriptions(Text[] text)
-
getDescription
public String getDescription()
-
getName
public String getName()
-
setName
public void setName(String value)
-
getRequired
public String getRequired()
-
setRequired
public void setRequired(String value)
-
getRtexprvalue
public String getRtexprvalue()
-
setRtexprvalue
public void setRtexprvalue(String value)
-
getType
public String getType()
-
setType
public void setType(String value)
-
getDeferredValue
public TldDeferredValue getDeferredValue()
-
setDeferredValue
public void setDeferredValue(TldDeferredValue value)
-
getDeferredMethod
public TldDeferredMethod getDeferredMethod()
-
setDeferredMethod
public void setDeferredMethod(TldDeferredMethod value)
-
getFragment
public String getFragment()
-
setFragment
public void setFragment(String value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-