Uses of Class
net.xqhs.graphs.representation.text.TextRepresentationElement

Packages that use TextRepresentationElement
net.xqhs.graphs.representation.text Contains classes for representing graphs in a textual manner, with help from a linearization process. 
 

Uses of TextRepresentationElement in net.xqhs.graphs.representation.text
 

Fields in net.xqhs.graphs.representation.text with type parameters of type TextRepresentationElement
(package private)  java.util.List<TextRepresentationElement> TextRepresentationElement.content
          The nested elements.
 

Methods in net.xqhs.graphs.representation.text that return TextRepresentationElement
protected  TextRepresentationElement TextRepresentationElement.addSub(java.util.List<TextRepresentationElement> subs)
          Adds a list of subordinate elements to this representation element.
protected  TextRepresentationElement TextRepresentationElement.addSub(TextRepresentationElement sub)
          Adds a subordinate element to this representation element.
protected static TextRepresentationElement TextRepresentationElement.readRepresentation(ContentHolder<java.lang.String> input, TextGraphRepresentation root, net.xqhs.util.logging.UnitComponent log)
          Same as readRepresentation(String, TextGraphRepresentation, UnitComponent), but using a content holder and leaving all un-consumed input in the holder.
protected static TextRepresentationElement TextRepresentationElement.readRepresentation(ContentHolder<java.lang.String> input, TextRepresentationElement.Type type, boolean firstSibling, TextGraphRepresentation root, net.xqhs.util.logging.UnitComponent log)
          The method uses the input string to read the representation of an element, removing the representation from the input and leaving other calls of the method to read the rest (if any).
protected static TextRepresentationElement TextRepresentationElement.readRepresentation(java.lang.String input, TextGraphRepresentation root, net.xqhs.util.logging.UnitComponent log)
          The method reads the representation of a whole graph from the given text input.
 

Methods in net.xqhs.graphs.representation.text that return types with arguments of type TextRepresentationElement
protected  java.util.List<TextRepresentationElement> TextGraphRepresentation.buildTextChildren(PathElement el, int level, java.util.Set<PathElement> blackNodes)
          Explores the children of the given path element, to create the list of corresponding representation elements.
 

Methods in net.xqhs.graphs.representation.text with parameters of type TextRepresentationElement
protected  TextRepresentationElement TextRepresentationElement.addSub(TextRepresentationElement sub)
          Adds a subordinate element to this representation element.
protected  Graph TextGraphRepresentation.buildGraph(TextRepresentationElement rootRepresentation)
          Based on the representation elements read from the input, the method assembles the represented graph.
 

Method parameters in net.xqhs.graphs.representation.text with type arguments of type TextRepresentationElement
protected  TextRepresentationElement TextRepresentationElement.addSub(java.util.List<TextRepresentationElement> subs)
          Adds a list of subordinate elements to this representation element.