org.apache.tomcat.util.modeler

Class AttributeInfo

public class AttributeInfo extends FeatureInfo implements Serializable

Internal configuration information for an Attribute descriptor.

Author: Craig R. McClanahan

Field Summary
protected StringdisplayName
protected StringgetMethod
protected booleanis
protected booleanreadable
protected StringsetMethod
protected booleanwriteable
Method Summary
StringgetDisplayName()
The display name of this attribute.
StringgetGetMethod()
The name of the property getter method, if non-standard.
StringgetSetMethod()
The name of the property setter method, if non-standard.
booleanisIs()
Is this a boolean attribute with an "is" getter?
booleanisReadable()
Is this attribute readable by management applications?
booleanisWriteable()
Is this attribute writeable by management applications?
voidsetDisplayName(String displayName)
voidsetGetMethod(String getMethod)
voidsetIs(boolean is)
voidsetReadable(boolean readable)
voidsetSetMethod(String setMethod)
voidsetWriteable(boolean writeable)

Field Detail

displayName

protected String displayName

getMethod

protected String getMethod

is

protected boolean is

readable

protected boolean readable

setMethod

protected String setMethod

writeable

protected boolean writeable

Method Detail

getDisplayName

public String getDisplayName()
The display name of this attribute.

getGetMethod

public String getGetMethod()
The name of the property getter method, if non-standard.

getSetMethod

public String getSetMethod()
The name of the property setter method, if non-standard.

isIs

public boolean isIs()
Is this a boolean attribute with an "is" getter?

isReadable

public boolean isReadable()
Is this attribute readable by management applications?

isWriteable

public boolean isWriteable()
Is this attribute writeable by management applications?

setDisplayName

public void setDisplayName(String displayName)

setGetMethod

public void setGetMethod(String getMethod)

setIs

public void setIs(boolean is)

setReadable

public void setReadable(boolean readable)

setSetMethod

public void setSetMethod(String setMethod)

setWriteable

public void setWriteable(boolean writeable)
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.