Methods Summary |
---|
public java.lang.String | getName()
return name;
|
public java.lang.String | getValue()
return value;
|
public java.lang.String | getXmlBlob()
return xmlBlob;
|
public void | setName(java.lang.String name)
this.name = name;
|
public void | setValue(java.lang.String value)
this.value = value;
|
public void | setXmlBlob(java.lang.String xmlBlob)
this.xmlBlob = xmlBlob;
|
public void | toString(java.lang.StringBuffer sb)
sb.append("ExtendedProperty");
if (name != null) sb.append(" name:").append(name);
if (value != null) sb.append(" value:").append(value);
if (xmlBlob != null) sb.append(" xmlBlob:").append(xmlBlob);
|
public void | validate()
if (name == null) {
throw new ParseException("name must not be null");
}
if ((value == null && xmlBlob == null) || (value != null && xmlBlob != null)) {
throw new ParseException("exactly one of value and xmlBlob must be present");
}
|