Class AttributeInfo

java.lang.Object
org.apache.tomcat.util.modeler.FeatureInfo
org.apache.tomcat.util.modeler.AttributeInfo
All Implemented Interfaces:
Serializable

public class AttributeInfo extends FeatureInfo

Internal configuration information for an Attribute descriptor.

Author:
Craig R. McClanahan
See Also:
  • Field Details Link icon

    • displayName Link icon

      protected String displayName
    • getMethod Link icon

      protected String getMethod
    • setMethod Link icon

      protected String setMethod
    • readable Link icon

      protected boolean readable
    • writeable Link icon

      protected boolean writeable
    • is Link icon

      protected boolean is
  • Constructor Details Link icon

    • AttributeInfo Link icon

      public AttributeInfo()
  • Method Details Link icon

    • getDisplayName Link icon

      public String getDisplayName()
      Returns:
      the display name of this attribute.
    • setDisplayName Link icon

      public void setDisplayName(String displayName)
    • getGetMethod Link icon

      public String getGetMethod()
      Returns:
      the name of the property getter method, if non-standard.
    • setGetMethod Link icon

      public void setGetMethod(String getMethod)
    • isIs Link icon

      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 Link icon

      public void setIs(boolean is)
    • isReadable Link icon

      public boolean isReadable()
      Is this attribute readable by management applications?
      Returns:
      true if readable
    • setReadable Link icon

      public void setReadable(boolean readable)
    • getSetMethod Link icon

      public String getSetMethod()
      Returns:
      the name of the property setter method, if non-standard.
    • setSetMethod Link icon

      public void setSetMethod(String setMethod)
    • isWriteable Link icon

      public boolean isWriteable()
      Is this attribute writable by management applications?
      Returns:
      true if writable
    • setWriteable Link icon

      public void setWriteable(boolean writeable)