Package org.apache.commons.modeler
Class ConstructorInfo
- java.lang.Object
-
- org.apache.commons.modeler.FeatureInfo
-
- org.apache.commons.modeler.ConstructorInfo
-
- All Implemented Interfaces:
java.io.Serializable
public class ConstructorInfo extends FeatureInfo implements java.io.Serializable
Internal configuration information for a
Constructordescriptor.- Version:
- $Revision: 480402 $ $Date: 2006-11-29 04:43:23 +0000 (Wed, 29 Nov 2006) $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringdisplayName(package private) javax.management.modelmbean.ModelMBeanConstructorInfoinfoTheModelMBeanConstructorInfoobject that corresponds to thisConstructorInfoinstance.protected ParameterInfo[]parameters(package private) static longserialVersionUID-
Fields inherited from class org.apache.commons.modeler.FeatureInfo
description, fields, name
-
-
Constructor Summary
Constructors Constructor Description ConstructorInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddParameter(ParameterInfo parameter)Add a new parameter to the set of parameters for this constructor.javax.management.modelmbean.ModelMBeanConstructorInfocreateConstructorInfo()Create and return aModelMBeanConstructorInfoobject that corresponds to the attribute described by this instance.java.lang.StringgetDisplayName()The display name of this attribute.ParameterInfo[]getSignature()The set of parameters for this constructor.voidsetDescription(java.lang.String description)Override thedescriptionproperty setter.voidsetDisplayName(java.lang.String displayName)voidsetName(java.lang.String name)Override thenameproperty setter.java.lang.StringtoString()Return a string representation of this constructor descriptor.-
Methods inherited from class org.apache.commons.modeler.FeatureInfo
addField, addFields, getDescription, getFields, getName
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
info
transient javax.management.modelmbean.ModelMBeanConstructorInfo info
TheModelMBeanConstructorInfoobject that corresponds to thisConstructorInfoinstance.
-
displayName
protected java.lang.String displayName
-
parameters
protected ParameterInfo[] parameters
-
-
Method Detail
-
setDescription
public void setDescription(java.lang.String description)
Override thedescriptionproperty setter.- Overrides:
setDescriptionin classFeatureInfo- Parameters:
description- The new description
-
setName
public void setName(java.lang.String name)
Override thenameproperty setter.- Overrides:
setNamein classFeatureInfo- Parameters:
name- The new name
-
getDisplayName
public java.lang.String getDisplayName()
The display name of this attribute.
-
setDisplayName
public void setDisplayName(java.lang.String displayName)
-
getSignature
public ParameterInfo[] getSignature()
The set of parameters for this constructor.
-
addParameter
public void addParameter(ParameterInfo parameter)
Add a new parameter to the set of parameters for this constructor.- Parameters:
parameter- The new parameter descriptor
-
createConstructorInfo
public javax.management.modelmbean.ModelMBeanConstructorInfo createConstructorInfo()
Create and return aModelMBeanConstructorInfoobject that corresponds to the attribute described by this instance.
-
toString
public java.lang.String toString()
Return a string representation of this constructor descriptor.- Overrides:
toStringin classjava.lang.Object
-
-