Package org.apache.tomcat.util.modeler
Class AttributeInfo
- java.lang.Object
- 
- org.apache.tomcat.util.modeler.FeatureInfo
- 
- org.apache.tomcat.util.modeler.AttributeInfo
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class AttributeInfo extends FeatureInfo Internal configuration information for an Attributedescriptor.- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringdisplayNameprotected java.lang.StringgetMethodprotected booleanisprotected booleanreadableprotected java.lang.StringsetMethodprotected booleanwriteable- 
Fields inherited from class org.apache.tomcat.util.modeler.FeatureInfodescription, info, name, type
 
- 
 - 
Constructor SummaryConstructors Constructor Description AttributeInfo()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDisplayName()java.lang.StringgetGetMethod()java.lang.StringgetSetMethod()booleanisIs()Is this a boolean attribute with an "is" getter?booleanisReadable()Is this attribute readable by management applications?booleanisWriteable()Is this attribute writable by management applications?voidsetDisplayName(java.lang.String displayName)voidsetGetMethod(java.lang.String getMethod)voidsetIs(boolean is)voidsetReadable(boolean readable)voidsetSetMethod(java.lang.String setMethod)voidsetWriteable(boolean writeable)- 
Methods inherited from class org.apache.tomcat.util.modeler.FeatureInfogetDescription, getName, getType, setDescription, setName, setType
 
- 
 
- 
- 
- 
Method Detail- 
getDisplayNamepublic java.lang.String getDisplayName() - Returns:
- the display name of this attribute.
 
 - 
setDisplayNamepublic void setDisplayName(java.lang.String displayName) 
 - 
getGetMethodpublic java.lang.String getGetMethod() - Returns:
- the name of the property getter method, if non-standard.
 
 - 
setGetMethodpublic void setGetMethod(java.lang.String getMethod) 
 - 
isIspublic boolean isIs() Is this a boolean attribute with an "is" getter?- Returns:
- trueif this is a boolean attribute with an "is" getter
 
 - 
setIspublic void setIs(boolean is) 
 - 
isReadablepublic boolean isReadable() Is this attribute readable by management applications?- Returns:
- trueif readable
 
 - 
setReadablepublic void setReadable(boolean readable) 
 - 
getSetMethodpublic java.lang.String getSetMethod() - Returns:
- the name of the property setter method, if non-standard.
 
 - 
setSetMethodpublic void setSetMethod(java.lang.String setMethod) 
 - 
isWriteablepublic boolean isWriteable() Is this attribute writable by management applications?- Returns:
- trueif writable
 
 - 
setWriteablepublic void setWriteable(boolean writeable) 
 
- 
 
-