The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<HTML>
<BODY BGCOLOR="white">
<PRE>
<FONT color="green">001</FONT>    package org.maltparser.core.syntaxgraph;<a name="line.1"></a>
<FONT color="green">002</FONT>    <a name="line.2"></a>
<FONT color="green">003</FONT>    import java.util.Set;<a name="line.3"></a>
<FONT color="green">004</FONT>    <a name="line.4"></a>
<FONT color="green">005</FONT>    import org.maltparser.core.exception.MaltChainedException;<a name="line.5"></a>
<FONT color="green">006</FONT>    import org.maltparser.core.syntaxgraph.edge.Edge;<a name="line.6"></a>
<FONT color="green">007</FONT>    import org.maltparser.core.syntaxgraph.node.PhraseStructureNode;<a name="line.7"></a>
<FONT color="green">008</FONT>    /**<a name="line.8"></a>
<FONT color="green">009</FONT>    *<a name="line.9"></a>
<FONT color="green">010</FONT>    *<a name="line.10"></a>
<FONT color="green">011</FONT>    * @author Johan Hall<a name="line.11"></a>
<FONT color="green">012</FONT>    */<a name="line.12"></a>
<FONT color="green">013</FONT>    public interface PhraseStructure extends TokenStructure, SecEdgeStructure {<a name="line.13"></a>
<FONT color="green">014</FONT>            public PhraseStructureNode addTerminalNode() throws MaltChainedException;<a name="line.14"></a>
<FONT color="green">015</FONT>            public PhraseStructureNode addTerminalNode(int index) throws MaltChainedException;<a name="line.15"></a>
<FONT color="green">016</FONT>            public PhraseStructureNode getTerminalNode(int index);<a name="line.16"></a>
<FONT color="green">017</FONT>            public int nTerminalNode();<a name="line.17"></a>
<FONT color="green">018</FONT>            public Edge addPhraseStructureEdge(PhraseStructureNode source, PhraseStructureNode target) throws MaltChainedException;<a name="line.18"></a>
<FONT color="green">019</FONT>            public void removePhraseStructureEdge(PhraseStructureNode source, PhraseStructureNode target) throws MaltChainedException;<a name="line.19"></a>
<FONT color="green">020</FONT>            public int nEdges();<a name="line.20"></a>
<FONT color="green">021</FONT>            public PhraseStructureNode getPhraseStructureRoot();<a name="line.21"></a>
<FONT color="green">022</FONT>            public PhraseStructureNode getNonTerminalNode(int index) throws MaltChainedException;<a name="line.22"></a>
<FONT color="green">023</FONT>            public PhraseStructureNode addNonTerminalNode() throws MaltChainedException;<a name="line.23"></a>
<FONT color="green">024</FONT>            public PhraseStructureNode addNonTerminalNode(int index) throws MaltChainedException;<a name="line.24"></a>
<FONT color="green">025</FONT>            public int getHighestNonTerminalIndex();<a name="line.25"></a>
<FONT color="green">026</FONT>            public Set&lt;Integer&gt; getNonTerminalIndices();<a name="line.26"></a>
<FONT color="green">027</FONT>            public boolean hasNonTerminals();<a name="line.27"></a>
<FONT color="green">028</FONT>            public int nNonTerminals();<a name="line.28"></a>
<FONT color="green">029</FONT>            public boolean isContinuous();<a name="line.29"></a>
<FONT color="green">030</FONT>            public boolean isContinuousExcludeTerminalsAttachToRoot();<a name="line.30"></a>
<FONT color="green">031</FONT>    //      public void makeContinuous() throws MaltChainedException;<a name="line.31"></a>
<FONT color="green">032</FONT>    }<a name="line.32"></a>




























































</PRE>
</BODY>
</HTML>