FileDocCategorySizeDatePackage
ConfigPropertyMetaData.javaAPI DocJBoss 4.2.12836Fri Jul 13 21:01:18 BST 2007org.jboss.resource.metadata

ConfigPropertyMetaData

public class ConfigPropertyMetaData extends DescriptionMetaDataContainer
Config property meta data
author
Adrian Brock
version
$Revision: 57189 $

Fields Summary
private static final long
serialVersionUID
private String
name
The name
private String
type
The type
private String
value
The value
Constructors Summary
Methods Summary
public java.lang.StringgetName()
Get the name

return
the name


              
     
   
      return name;
   
public java.lang.StringgetType()
Get the type

return
the type

      return type;
   
public java.lang.StringgetValue()
Get the value

return
the value

      return value;
   
public voidsetName(java.lang.String name)
Set the name

param
name the name

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

param
type the type

      this.type = type;
   
public voidsetValue(java.lang.String value)
Set the value

param
value the value

      this.value = value;
   
public java.lang.StringtoString()

      StringBuffer buffer = new StringBuffer();
      buffer.append("ConfigPropertyMetaData").append('@");
      buffer.append(Integer.toHexString(System.identityHashCode(this)));
      buffer.append("[name=").append(name);
      if (type != null)
         buffer.append(" type=").append(type);
      if (value != null)
         buffer.append(" value=").append(value);
      buffer.append(" descriptions=").append(getDescriptions());
      buffer.append(']");
      return buffer.toString();