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.symbol;<a name="line.1"></a>
<FONT color="green">002</FONT>    <a name="line.2"></a>
<FONT color="green">003</FONT>    import java.io.BufferedReader;<a name="line.3"></a>
<FONT color="green">004</FONT>    import java.io.BufferedWriter;<a name="line.4"></a>
<FONT color="green">005</FONT>    import java.util.Set;<a name="line.5"></a>
<FONT color="green">006</FONT>    <a name="line.6"></a>
<FONT color="green">007</FONT>    import org.apache.log4j.Logger;<a name="line.7"></a>
<FONT color="green">008</FONT>    import org.maltparser.core.exception.MaltChainedException;<a name="line.8"></a>
<FONT color="green">009</FONT>    import org.maltparser.core.symbol.nullvalue.NullValues.NullValueId;<a name="line.9"></a>
<FONT color="green">010</FONT>    <a name="line.10"></a>
<FONT color="green">011</FONT>    public interface SymbolTable extends Table {<a name="line.11"></a>
<FONT color="green">012</FONT>            public int addSymbol(StringBuilder symbol) throws MaltChainedException;<a name="line.12"></a>
<FONT color="green">013</FONT>            public boolean getKnown(int code);<a name="line.13"></a>
<FONT color="green">014</FONT>            public boolean getKnown(String symbol);<a name="line.14"></a>
<FONT color="green">015</FONT>            public void makeKnown(int code);<a name="line.15"></a>
<FONT color="green">016</FONT>            public Set&lt;Integer&gt; getCodes();<a name="line.16"></a>
<FONT color="green">017</FONT>            public void printSymbolTable(Logger logger) throws MaltChainedException;<a name="line.17"></a>
<FONT color="green">018</FONT>            public void save(BufferedWriter out) throws MaltChainedException;<a name="line.18"></a>
<FONT color="green">019</FONT>            public void load(BufferedReader in) throws MaltChainedException;<a name="line.19"></a>
<FONT color="green">020</FONT>            public int getValueCounter();<a name="line.20"></a>
<FONT color="green">021</FONT>            public int getNullValueCode(NullValueId nullValueIdentifier) throws MaltChainedException;<a name="line.21"></a>
<FONT color="green">022</FONT>            public String getNullValueSymbol(NullValueId nullValueIdentifier) throws MaltChainedException;<a name="line.22"></a>
<FONT color="green">023</FONT>            public boolean isNullValue(String value) throws MaltChainedException;<a name="line.23"></a>
<FONT color="green">024</FONT>            public boolean isNullValue(int code) throws MaltChainedException;<a name="line.24"></a>
<FONT color="green">025</FONT>            public void copy(SymbolTable fromTable) throws MaltChainedException;<a name="line.25"></a>
<FONT color="green">026</FONT>    }<a name="line.26"></a>




























































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