Uses of Interface
org.jicengine.element.Element

Packages that use Element
org.jicengine.builder   
org.jicengine.element   
org.jicengine.element.impl   
 

Uses of Element in org.jicengine.builder
 

Methods in org.jicengine.builder that return Element
 Element Handler.getResult()
           
 

Uses of Element in org.jicengine.element
 

Subinterfaces of Element in org.jicengine.element
 interface ActionElement
           ActionElements can execute an action on request.
 interface ValueElement
           ValueElements are elements that both have a value and let the clients/users decide what to do with the value.
 

Classes in org.jicengine.element that implement Element
 class AbstractElement
          implements the 'name' and the 'location' properties.
 class ElementImpl
           ElementImpl encapsulates the common properties and behaviour of an element.
 class ElementImpl.ActionElementImpl
          ActionElement-version of an ElementImpl.
 class ElementImpl.ValueElementImpl
          ValueElement-version of an ElementImpl.
 class StaticValueElement
           
 class WrapperActionElement
           WrapperActionElement adds an action to a ValueElement.
 

Methods in org.jicengine.element that return Element
 Element ElementImpl.toRuntimeElement()
           Returns the runtime-version of this Element.
 Element ElementCompiler.createElement()
           
 

Methods in org.jicengine.element with parameters of type Element
 void ElementImpl.addChildElement(Element child)
          adds a child element into this element.
 void ElementCompiler.handleChildElement(Element child)
          Used for notifying this element about a child-element
 

Uses of Element in org.jicengine.element.impl
 

Classes in org.jicengine.element.impl that implement Element
static class ArrayElementCompiler.RenamedValueElement
          Description of the Class
 

Methods in org.jicengine.element.impl with parameters of type Element
 void ArrayElementCompiler.handleChildElement(Element child)
           Overrides the default handleChildElement()-procedure so that it becomes possible to handle the child-elements as elements of the array.