public class CustomXmlProperty
Used as an item of a
Constructor Summary |
---|
CustomXmlProperty(java.lang.Stringname, java.lang.Stringuri, java.lang.Stringvalue)
Initializes a new instance of this class. |
Property Getters/Setters Summary | ||
---|---|---|
java.lang.String | getName() | |
Specifies the name of the custom XML attribute or smart tag property.
|
||
java.lang.String | getUri() | |
void | setUri(java.lang.Stringvalue) | |
Gets or sets the namespace URI of the custom XML attribute or smart tag property. | ||
java.lang.String | getValue() | |
void | setValue(java.lang.Stringvalue) | |
Gets or sets the value of the custom XML attribute or smart tag property. |
public CustomXmlProperty(java.lang.String name, java.lang.String uri, java.lang.String value)
name
- The name of the property. Cannot be null.uri
- The namespace URI of the property. Cannot be null.value
- The value of the property. Cannot be null.public java.lang.String getName()
Cannot be null.
Default is empty string.
public java.lang.String getUri() / public void setUri(java.lang.String value)
Cannot be null.
Default is empty string.
public java.lang.String getValue() / public void setValue(java.lang.String value)
Cannot be null.
Default is empty string.