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.feature.function;<a name="line.1"></a>
<FONT color="green">002</FONT>    <a name="line.2"></a>
<FONT color="green">003</FONT>    import org.maltparser.core.exception.MaltChainedException;<a name="line.3"></a>
<FONT color="green">004</FONT>    import org.maltparser.core.feature.value.FeatureValue;<a name="line.4"></a>
<FONT color="green">005</FONT>    import org.maltparser.core.symbol.SymbolTable;<a name="line.5"></a>
<FONT color="green">006</FONT>    /**<a name="line.6"></a>
<FONT color="green">007</FONT>    *<a name="line.7"></a>
<FONT color="green">008</FONT>    *<a name="line.8"></a>
<FONT color="green">009</FONT>    * @author Johan Hall<a name="line.9"></a>
<FONT color="green">010</FONT>    */<a name="line.10"></a>
<FONT color="green">011</FONT>    public interface FeatureFunction extends Function {<a name="line.11"></a>
<FONT color="green">012</FONT>            /**<a name="line.12"></a>
<FONT color="green">013</FONT>             * Cause the feature function to update the cardinality of the feature value.<a name="line.13"></a>
<FONT color="green">014</FONT>             * <a name="line.14"></a>
<FONT color="green">015</FONT>             * @throws MaltChainedException<a name="line.15"></a>
<FONT color="green">016</FONT>             */<a name="line.16"></a>
<FONT color="green">017</FONT>            public abstract void updateCardinality() throws MaltChainedException;<a name="line.17"></a>
<FONT color="green">018</FONT>            /**<a name="line.18"></a>
<FONT color="green">019</FONT>             * Returns the string representation of the integer &lt;code&gt;code&lt;/code&gt; according to the feature function. <a name="line.19"></a>
<FONT color="green">020</FONT>             * <a name="line.20"></a>
<FONT color="green">021</FONT>             * @param code the integer representation of the symbol<a name="line.21"></a>
<FONT color="green">022</FONT>             * @return the string representation of the integer &lt;code&gt;code&lt;/code&gt; according to the feature function.<a name="line.22"></a>
<FONT color="green">023</FONT>             * @throws MaltChainedException<a name="line.23"></a>
<FONT color="green">024</FONT>             */<a name="line.24"></a>
<FONT color="green">025</FONT>            public abstract String getSymbol(int code) throws MaltChainedException;<a name="line.25"></a>
<FONT color="green">026</FONT>            /**<a name="line.26"></a>
<FONT color="green">027</FONT>             * Returns the integer representation of the string &lt;code&gt;symbol&lt;/code&gt; according to the feature function.<a name="line.27"></a>
<FONT color="green">028</FONT>             * <a name="line.28"></a>
<FONT color="green">029</FONT>             * @param symbol the string representation of the symbol<a name="line.29"></a>
<FONT color="green">030</FONT>             * @return the integer representation of the string &lt;code&gt;symbol&lt;/code&gt; according to the feature function.<a name="line.30"></a>
<FONT color="green">031</FONT>             * @throws MaltChainedException<a name="line.31"></a>
<FONT color="green">032</FONT>             */<a name="line.32"></a>
<FONT color="green">033</FONT>            public abstract int getCode(String symbol) throws MaltChainedException; <a name="line.33"></a>
<FONT color="green">034</FONT>            /**<a name="line.34"></a>
<FONT color="green">035</FONT>             * Returns the symbol table used by the feature function.<a name="line.35"></a>
<FONT color="green">036</FONT>             * <a name="line.36"></a>
<FONT color="green">037</FONT>             * @return the symbol table used by the feature function.<a name="line.37"></a>
<FONT color="green">038</FONT>             */<a name="line.38"></a>
<FONT color="green">039</FONT>            public abstract SymbolTable getSymbolTable();<a name="line.39"></a>
<FONT color="green">040</FONT>            /**<a name="line.40"></a>
<FONT color="green">041</FONT>             * Returns the feature value<a name="line.41"></a>
<FONT color="green">042</FONT>             * <a name="line.42"></a>
<FONT color="green">043</FONT>             * @return the feature value<a name="line.43"></a>
<FONT color="green">044</FONT>             */<a name="line.44"></a>
<FONT color="green">045</FONT>            public abstract FeatureValue getFeatureValue(); <a name="line.45"></a>
<FONT color="green">046</FONT>    }<a name="line.46"></a>




























































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