Method from javax.imageio.metadata.IIOAttr Detail: |
public String getName() {
return name;
}
|
public String getNodeName() {
return name;
}
|
public short getNodeType() {
return ATTRIBUTE_NODE;
}
|
public String getNodeValue() {
return value;
}
|
public Element getOwnerElement() {
return owner;
}
|
public boolean getSpecified() {
return true;
}
|
public String getValue() {
return value;
}
|
public boolean isId() {
return false;
}
This method is new in the DOM L3 for Attr interface.
Could throw DOMException here, but its probably OK
to always return false. One reason for this, is we have no good
way to document this exception, since this class, IIOAttr,
is not a public class. The rest of the methods that throw
DOMException are publically documented as such on IIOMetadataNode. |
public void setNodeValue(String value) {
this.value = value;
}
|
public void setOwnerElement(Element owner) {
this.owner = owner;
}
|
public void setValue(String value) {
this.value = value;
}
|