Home » apache-tomcat-6.0.26-src » org.apache » tomcat » util » modeler » [javadoc | source]
org.apache.tomcat.util.modeler
public class: AttributeInfo [javadoc | source]
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.

Field Summary
static final  long serialVersionUID     
protected  String displayName     
protected  String getMethod     
protected  String setMethod     
protected  boolean readable     
protected  boolean writeable     
protected  boolean is     
Fields inherited from org.apache.tomcat.util.modeler.FeatureInfo:
serialVersionUID,  description,  name,  info,  type
Method from org.apache.tomcat.util.modeler.AttributeInfo Summary:
createAttributeInfo,   getDisplayName,   getGetMethod,   getSetMethod,   isIs,   isReadable,   isWriteable,   setDisplayName,   setGetMethod,   setIs,   setReadable,   setSetMethod,   setWriteable
Methods from org.apache.tomcat.util.modeler.FeatureInfo:
getDescription,   getName,   getType,   setDescription,   setName,   setType
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.tomcat.util.modeler.AttributeInfo Detail:
 MBeanAttributeInfo createAttributeInfo() 
    Create and return a ModelMBeanAttributeInfo object that corresponds to the attribute described by this instance.
 public String getDisplayName() 
    The display name of this attribute.
 public String getGetMethod() 
    The name of the property getter method, if non-standard.
 public String getSetMethod() 
    The name of the property setter method, if non-standard.
 public boolean isIs() 
    Is this a boolean attribute with an "is" getter?
 public boolean isReadable() 
    Is this attribute readable by management applications?
 public boolean isWriteable() 
    Is this attribute writeable by management applications?
 public  void setDisplayName(String displayName) 
 public  void setGetMethod(String getMethod) 
 public  void setIs(boolean is) 
 public  void setReadable(boolean readable) 
 public  void setSetMethod(String setMethod) 
 public  void setWriteable(boolean writeable)