com.novell.nds.dirxml.driver.xds
Class XDSComponentElement

java.lang.Object
  extended bycom.novell.nds.dirxml.driver.xds.ElementImpl
      extended bycom.novell.nds.dirxml.driver.xds.XDSComponentElement
All Implemented Interfaces:
TextParent, XDSElement

public class XDSComponentElement
extends ElementImpl
implements TextParent

A <component> element.

See Also:
XDSValueElement.appendComponentElement(), XDSValueElement.extractComponentElements()

Method Summary
 void appendText(String someText)
          Appends a single, child text node containing someText to this element.
 String extractText()
          Returns the concatenated child text nodes of this element.
 String getAssociationRef()
          Gets the value of this element's association-ref attribute.
 String getName()
          Gets the value of this element's name attribute.
 void setAssociationRef(String someRef)
          Sets this element's association-ref attribute to someRef.
 void setName(String someName)
          Sets this element's name attribute to someName.
 
Methods inherited from class com.novell.nds.dirxml.driver.xds.ElementImpl
attributeValueGet, attributeValueGet, attributeValueSet, childElements, documentImpl, domDocument, domElement, localName, namespaceName, position, tagName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.novell.nds.dirxml.driver.xds.XDSElement
attributeValueGet, attributeValueGet, attributeValueSet, childElements, domDocument, domElement, localName, namespaceName, position, tagName
 

Method Detail

getName

public String getName()
Gets the value of this element's name attribute.

Invocation Context:
READ

Returns:
will not return null; will not return ""

getAssociationRef

public String getAssociationRef()
Gets the value of this element's association-ref attribute.

Invocation Context:
READ

Returns:
may return null; will not return ""

extractText

public String extractText()
Description copied from interface: TextParent
Returns the concatenated child text nodes of this element.

Invocation Context:
READ

Specified by:
extractText in interface TextParent
Returns:
all of the child text nodes of this element; may be null; will not return ""

setName

public void setName(String someName)
Sets this element's name attribute to someName.

Invocation Context:
WRITE

Parameters:
someName - if null or "", no action is taken

setAssociationRef

public void setAssociationRef(String someRef)
Sets this element's association-ref attribute to someRef.

Invocation Context:
WRITE

Parameters:
someRef - if null or "", no action is taken

appendText

public void appendText(String someText)
Description copied from interface: TextParent
Appends a single, child text node containing someText to this element.

Invocation Context:
WRITE

Specified by:
appendText in interface TextParent
Parameters:
someText - the text being appended; if null or "", no action is taken