Uses of Class
org.makumba.analyser.ElementData

Packages that use ElementData
org.makumba.analyser   
org.makumba.analyser.engine   
org.makumba.devel.relations   
 

Uses of ElementData in org.makumba.analyser
 

Subclasses of ElementData in org.makumba.analyser
 class ELData
          Data for an EL value or method
 class TagData
          A composite object passed to the analyzers.
 

Methods in org.makumba.analyser that return ElementData
static ElementData AnalysableElement.getAnalyzedElementData()
          Gets the data of the currently analyzed element for this thread
abstract  ElementData AnalysableElement.getElementData()
           
 ElementData AnalysableTag.getElementData()
           
 ElementData AnalysableExpression.getElementData()
           
static ElementData AnalysableElement.getRunningElementData()
          Gets the data of the currently running element for this thread
 

Methods in org.makumba.analyser that return types with arguments of type ElementData
static Stack<ElementData> AnalysableElement.getThreadElementStack()
          Gets the stack of elements currently running in this thread
 

Methods in org.makumba.analyser with parameters of type ElementData
 boolean ElementData.after(ElementData el)
          Checks whether this ElementData is declared after the given ElementData
 boolean ElementData.before(ElementData el)
          Checks whether this ElementData is declared before the given ElementData
protected static TagData AnalysableElement.getElementAfter(PageCache pageCache, ElementData elData, Class<? extends AnalysableTag> klass)
           
protected static TagData AnalysableElement.getElementBefore(PageCache pageCache, ElementData elData, Class<? extends AnalysableTag> klass)
           
static void AnalysableElement.setAnalyzedElementData(ElementData data)
          Sets the element data of the currently analyzed element for this thread
static void AnalysableElement.setRunningElementData(ElementData data)
          Sets the element data of the currently running element for this thread
 

Uses of ElementData in org.makumba.analyser.engine
 

Methods in org.makumba.analyser.engine with parameters of type ElementData
static void JspParseData.tagDataLine(ElementData td, StringBuffer sb)
          Prints the line of a tag and points the beginning of the tag.
 

Uses of ElementData in org.makumba.devel.relations
 

Methods in org.makumba.devel.relations with parameters of type ElementData
 void RelationParseStatus.addTag(ElementData td)