org.jbind.xml.core.cmp
Interface IAppInfo

All Known Subinterfaces:
IAppInfoElement
All Known Implementing Classes:
AppInfoElement

public interface IAppInfo

Describes the appinfo element.


Method Summary
 void acceptAppInfoVisitor(IAppInfoVisitor aVisitor)
          Recursivly visits all nodes of the appinfo element.
 java.lang.String getSource()
          Gets the source attribute of the appinfo element.
 java.util.Iterator iterXmlNodes()
          Iterates the nodes contained in the appinfo element.
 

Method Detail

getSource

public java.lang.String getSource()
Gets the source attribute of the appinfo element.

Returns:
(optional).

iterXmlNodes

public java.util.Iterator iterXmlNodes()
Iterates the nodes contained in the appinfo element.

Returns:
(required) An iterator of IXmlNode. There are two sub types of XmlNodes: IXmlText and IXmlElement.

acceptAppInfoVisitor

public void acceptAppInfoVisitor(IAppInfoVisitor aVisitor)
Recursivly visits all nodes of the appinfo element. The nodes are visited in document order. Each node calls the corresponding visit method of the visitor.

Parameters:
aVisitor - (required).