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:
Serializable
Internal configuration information for an Attribute
descriptor.
- Author:
- Craig R. McClanahan
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected String
protected String
protected boolean
protected boolean
protected String
protected boolean
Fields inherited from class org.apache.tomcat.util.modeler.FeatureInfo
description, info, name, type
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isIs()
Is this a boolean attribute with an "is" getter?boolean
Is this attribute readable by management applications?boolean
Is this attribute writable 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) Methods inherited from class org.apache.tomcat.util.modeler.FeatureInfo
getDescription, getName, getType, setDescription, setName, setType
-
Field Details
-
displayName
-
getMethod
-
setMethod
-
readable
protected boolean readable -
writeable
protected boolean writeable -
is
protected boolean is
-
-
Constructor Details
-
AttributeInfo
public AttributeInfo()
-
-
Method Details
-
getDisplayName
- Returns:
- the display name of this attribute.
-
setDisplayName
-
getGetMethod
- Returns:
- the name of the property getter method, if non-standard.
-
setGetMethod
-
isIs
public boolean isIs()Is this a boolean attribute with an "is" getter?- Returns:
true
if this is a boolean attribute with an "is" getter
-
setIs
public void setIs(boolean is) -
isReadable
public boolean isReadable()Is this attribute readable by management applications?- Returns:
true
if readable
-
setReadable
public void setReadable(boolean readable) -
getSetMethod
- Returns:
- the name of the property setter method, if non-standard.
-
setSetMethod
-
isWriteable
public boolean isWriteable()Is this attribute writable by management applications?- Returns:
true
if writable
-
setWriteable
public void setWriteable(boolean writeable)
-