org.apache.tomcat.util.modeler
public class AttributeInfo extends FeatureInfo implements Serializable
Internal configuration information for an Attribute
descriptor.
| Field Summary | |
|---|---|
| protected String | displayName |
| protected String | getMethod |
| protected boolean | is |
| protected boolean | readable |
| protected String | setMethod |
| protected boolean | writeable |
| Method Summary | |
|---|---|
| String | getDisplayName()
The display name of this attribute. |
| String | getGetMethod()
The name of the property getter method, if non-standard. |
| String | getSetMethod()
The name of the property setter method, if non-standard. |
| boolean | isIs()
Is this a boolean attribute with an "is" getter? |
| boolean | isReadable()
Is this attribute readable by management applications? |
| boolean | isWriteable()
Is this attribute writeable by management applications? |
| void | setDisplayName(String displayName) |
| void | setGetMethod(String getMethod) |
| void | setIs(boolean is) |
| void | setReadable(boolean readable) |
| void | setSetMethod(String setMethod) |
| void | setWriteable(boolean writeable) |