Uses of Class
org.bibalex.daf.entities.phase.PhysicalElement

Packages that use PhysicalElement
org.bibalex.daf.entities.phase   
 

Uses of PhysicalElement in org.bibalex.daf.entities.phase
 

Subclasses of PhysicalElement in org.bibalex.daf.entities.phase
 class FileElement
          Represents the file definition within the physical section of a phase.
The FileElement capabilities are not limited to parsing XML and converting it to an object.
The following are also included:
1) Count the number of the files that match the definition in a given folder.
 class FolderElement
          Represents the folder definition within the physical section of a phase.
The FolderElement capabilities are not limited to parsing XML and converting it to an object.
The following are also included:
1) Count the number of the files within the folder.
 

Fields in org.bibalex.daf.entities.phase with type parameters of type PhysicalElement
 java.util.ArrayList<PhysicalElement> PhysicalDef.elements
          Holds the elements defined within this section
private  java.util.ArrayList<PhysicalElement> FolderElement.subElements
          The physical elements that are contained within this FolderElement
 

Methods in org.bibalex.daf.entities.phase that return PhysicalElement
static PhysicalElement PhysicalElement.createElement(org.w3c.dom.Node node)
          Creates one of the concrete classes according to the given node.
 PhysicalElement[] FolderElement.getChildren()
          Gets the children contained within this folder.
 PhysicalElement[] PhysicalDef.getElements()
          Gets the elements defined within this section.
 

Methods in org.bibalex.daf.entities.phase with parameters of type PhysicalElement
 void FolderElement.addChild(PhysicalElement element)
          Adds the given element to the list of sub-elements.