MaltParser 1.2

Uses of Interface
org.maltparser.core.syntaxgraph.edge.Edge

Packages that use Edge
org.maltparser.core.syntaxgraph   
org.maltparser.core.syntaxgraph.ds2ps   
org.maltparser.core.syntaxgraph.edge   
org.maltparser.core.syntaxgraph.node   
org.maltparser.parser.algorithm.covington Implements the Covington deterministic parsing algorithms. 
org.maltparser.parser.algorithm.nivre Implements the Nivre deterministic parsing algorithms. 
 

Uses of Edge in org.maltparser.core.syntaxgraph
 

Fields in org.maltparser.core.syntaxgraph with type parameters of type Edge
protected  org.maltparser.core.pool.ObjectPoolList<Edge> PhraseStructureGraph.edgePool
           
protected  SortedSet<Edge> PhraseStructureGraph.graphEdges
           
 

Methods in org.maltparser.core.syntaxgraph that return Edge
 Edge MappablePhraseStructureGraph.addDependencyEdge(DependencyNode head, DependencyNode dependent)
           
protected  Edge DependencyGraph.addDependencyEdge(DependencyNode head, DependencyNode dependent)
           
 Edge MappablePhraseStructureGraph.addDependencyEdge(int headIndex, int dependentIndex)
           
 Edge DependencyStructure.addDependencyEdge(int headIndex, int dependentIndex)
          Adds an edge from the head to the dependent identified by the indices of the dependency nodes.
 Edge DependencyGraph.addDependencyEdge(int headIndex, int dependentIndex)
           
 Edge PhraseStructureGraph.addPhraseStructureEdge(PhraseStructureNode parent, PhraseStructureNode child)
           
 Edge PhraseStructure.addPhraseStructureEdge(PhraseStructureNode source, PhraseStructureNode target)
           
 Edge MappablePhraseStructureGraph.addPhraseStructureEdge(PhraseStructureNode parent, PhraseStructureNode child)
           
 Edge SecEdgeStructure.addSecondaryEdge(ComparableNode source, ComparableNode target)
           
 Edge PhraseStructureGraph.addSecondaryEdge(ComparableNode source, ComparableNode target)
           
 Edge MappablePhraseStructureGraph.addSecondaryEdge(ComparableNode source, ComparableNode target)
           
 Edge DependencyGraph.addSecondaryEdge(ComparableNode source, ComparableNode target)
           
 Edge MappablePhraseStructureGraph.moveDependencyEdge(DependencyNode newHead, DependencyNode dependent)
           
protected  Edge DependencyGraph.moveDependencyEdge(DependencyNode newHead, DependencyNode dependent)
           
 Edge MappablePhraseStructureGraph.moveDependencyEdge(int newHeadIndex, int dependentIndex)
           
 Edge DependencyStructure.moveDependencyEdge(int newHeadIndex, int dependentIndex)
          Replace the head of the dependent with a new head.
 Edge DependencyGraph.moveDependencyEdge(int newHeadIndex, int dependentIndex)
           
 

Uses of Edge in org.maltparser.core.syntaxgraph.ds2ps
 

Methods in org.maltparser.core.syntaxgraph.ds2ps with parameters of type Edge
 void LosslessMapping.update(MappablePhraseStructureGraph graph, Edge e, Object arg)
           
 void LosslessMapping.updatePhraseStructureGraph(MappablePhraseStructureGraph graph, Edge depEdge, boolean attachHeadSpineToRoot)
           
 

Uses of Edge in org.maltparser.core.syntaxgraph.edge
 

Classes in org.maltparser.core.syntaxgraph.edge that implement Edge
 class GraphEdge
           
 class WeightedEdge
           
 

Uses of Edge in org.maltparser.core.syntaxgraph.node
 

Fields in org.maltparser.core.syntaxgraph.node with type parameters of type Edge
protected  SortedSet<Edge> GraphNode.incomingEdges
           
protected  SortedSet<Edge> GraphNode.outgoingEdges
           
 

Methods in org.maltparser.core.syntaxgraph.node that return Edge
 Edge Token.getHeadEdge()
           
 Edge Root.getHeadEdge()
           
 Edge DependencyNode.getHeadEdge()
          Returns the edge between the head and the node if it exists, otherwise null.
 Edge Token.getParentEdge()
           
 Edge Root.getParentEdge()
           
 Edge PhraseStructureNode.getParentEdge()
           
 Edge NonTerminal.getParentEdge()
           
 

Methods in org.maltparser.core.syntaxgraph.node that return types with arguments of type Edge
 Set<Edge> Token.getHeadEdges()
           
 Set<Edge> Root.getHeadEdges()
           
 Set<Edge> DependencyNode.getHeadEdges()
           
 Iterator<Edge> Node.getIncomingEdgeIterator()
           
 Iterator<Edge> GraphNode.getIncomingEdgeIterator()
           
 SortedSet<Edge> GraphNode.getIncomingSecondaryEdges()
           
 SortedSet<Edge> ComparableNode.getIncomingSecondaryEdges()
          Returns a sorted set of incoming secondary edges.
 Iterator<Edge> Node.getOutgoingEdgeIterator()
           
 Iterator<Edge> GraphNode.getOutgoingEdgeIterator()
           
 SortedSet<Edge> GraphNode.getOutgoingSecondaryEdges()
           
 SortedSet<Edge> ComparableNode.getOutgoingSecondaryEdges()
          Returns a sorted set of outgoing secondary edges.
 

Methods in org.maltparser.core.syntaxgraph.node with parameters of type Edge
 void Token.addIncomingEdge(Edge in)
           
 void Root.addIncomingEdge(Edge in)
           
 void NonTerminal.addIncomingEdge(Edge in)
           
 void Node.addIncomingEdge(Edge in)
           
 void GraphNode.addIncomingEdge(Edge in)
           
 void Token.addOutgoingEdge(Edge out)
           
 void Root.addOutgoingEdge(Edge out)
           
 void NonTerminal.addOutgoingEdge(Edge out)
           
 void Node.addOutgoingEdge(Edge out)
           
 void GraphNode.addOutgoingEdge(Edge out)
           
 void Token.removeIncomingEdge(Edge in)
           
 void Root.removeIncomingEdge(Edge in)
           
 void NonTerminal.removeIncomingEdge(Edge in)
           
 void Node.removeIncomingEdge(Edge in)
           
 void GraphNode.removeIncomingEdge(Edge in)
           
 void Token.removeOutgoingEdge(Edge out)
           
 void Root.removeOutgoingEdge(Edge out)
           
 void NonTerminal.removeOutgoingEdge(Edge out)
           
 void Node.removeOutgoingEdge(Edge out)
           
 void GraphNode.removeOutgoingEdge(Edge out)
           
 

Uses of Edge in org.maltparser.parser.algorithm.covington
 

Methods in org.maltparser.parser.algorithm.covington with parameters of type Edge
protected  void Covington.addEdgeLabels(Edge e)
           
 

Uses of Edge in org.maltparser.parser.algorithm.nivre
 

Methods in org.maltparser.parser.algorithm.nivre with parameters of type Edge
protected  void Nivre.addEdgeLabels(Edge e)
           
 


MaltParser 1.2

Copyright 2007-2008 Johan Hall, Jens Nilsson and Joakim Nivre.