Methods Summary |
---|
public java.lang.String | getName()Get the name
return name;
|
public java.lang.String | getType()Get the type
return type;
|
public java.lang.String | getValue()Get the value
return value;
|
public void | setName(java.lang.String name)Set the name
this.name = name;
|
public void | setType(java.lang.String type)Set the type
this.type = type;
|
public void | setValue(java.lang.String value)Set the value
this.value = value;
|
public java.lang.String | toString()
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();
|