Methods Summary |
---|
public org.w3c.dom.Node | appendChild(org.w3c.dom.Node node)Adds childe Node
Node result = null;
if (this._state == MODE_SIGN) {
result = this._constructionElement.appendChild(node);
}
return result;
|
public java.lang.String | getBaseLocalName()
return Constants._TAG_OBJECT;
|
public java.lang.String | getEncoding()Returns the Encoding attribute
return this._constructionElement.getAttributeNS(null, Constants._ATT_ENCODING);
|
public java.lang.String | getId()Returns the Id attribute
return this._constructionElement.getAttributeNS(null, Constants._ATT_ID);
|
public java.lang.String | getMimeType()Returns the MimeType attribute
return this._constructionElement.getAttributeNS(null, Constants._ATT_MIMETYPE);
|
public void | setEncoding(java.lang.String Encoding)Sets the Encoding attribute
if ((this._state == MODE_SIGN) && (Encoding != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_ENCODING,
Encoding);
}
|
public void | setId(java.lang.String Id)Sets the Id attribute
if ((this._state == MODE_SIGN) && (Id != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_ID, Id);
IdResolver.registerElementById(this._constructionElement, Id);
}
|
public void | setMimeType(java.lang.String MimeType)Sets the MimeType attribute
if ((this._state == MODE_SIGN) && (MimeType != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_MIMETYPE,
MimeType);
}
|