FileDocCategorySizeDatePackage
FeatureInfo.javaAPI DocApache Tomcat 6.0.142524Fri Jul 20 04:20:34 BST 2007org.apache.tomcat.util.modeler

FeatureInfo

public class FeatureInfo extends Object implements Serializable

Convenience base class for AttributeInfo, ConstructorInfo, and OperationInfo classes that will be used to collect configuration information for the ModelMBean beans exposed for management.

author
Craig R. McClanahan
version
$Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $

Fields Summary
static final long
serialVersionUID
protected String
description
protected String
name
protected MBeanFeatureInfo
info
protected String
type
Constructors Summary
Methods Summary
public java.lang.StringgetDescription()
The human-readable description of this feature.


    
    // ------------------------------------------------------------- Properties

               
       
        return (this.description);
    
public java.lang.StringgetName()
The name of this feature, which must be unique among features in the same collection.

        return (this.name);
    
public java.lang.StringgetType()
The fully qualified Java class name of this element.

        return (this.type);
    
public voidsetDescription(java.lang.String description)

        this.description = description;
    
public voidsetName(java.lang.String name)

        this.name = name;
    
public voidsetType(java.lang.String type)

        this.type = type;