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.parser.algorithm.twoplanar;<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.function.Function;<a name="line.4"></a>
<FONT color="green">005</FONT>    import org.maltparser.parser.AbstractParserFactory;<a name="line.5"></a>
<FONT color="green">006</FONT>    import org.maltparser.parser.Algorithm;<a name="line.6"></a>
<FONT color="green">007</FONT>    import org.maltparser.parser.DependencyParserConfig;<a name="line.7"></a>
<FONT color="green">008</FONT>    import org.maltparser.parser.ParserConfiguration;<a name="line.8"></a>
<FONT color="green">009</FONT>    /**<a name="line.9"></a>
<FONT color="green">010</FONT>     * @author Carlos Gomez Rodriguez<a name="line.10"></a>
<FONT color="green">011</FONT>     *<a name="line.11"></a>
<FONT color="green">012</FONT>     */<a name="line.12"></a>
<FONT color="green">013</FONT>    public abstract class TwoPlanarFactory implements AbstractParserFactory {<a name="line.13"></a>
<FONT color="green">014</FONT>            protected Algorithm algorithm;<a name="line.14"></a>
<FONT color="green">015</FONT>            protected DependencyParserConfig manager;<a name="line.15"></a>
<FONT color="green">016</FONT>            <a name="line.16"></a>
<FONT color="green">017</FONT>            public TwoPlanarFactory(Algorithm algorithm) {<a name="line.17"></a>
<FONT color="green">018</FONT>                    setAlgorithm(algorithm);<a name="line.18"></a>
<FONT color="green">019</FONT>                    setManager(algorithm.getManager());<a name="line.19"></a>
<FONT color="green">020</FONT>            }<a name="line.20"></a>
<FONT color="green">021</FONT>            <a name="line.21"></a>
<FONT color="green">022</FONT>            public ParserConfiguration makeParserConfiguration() throws MaltChainedException {<a name="line.22"></a>
<FONT color="green">023</FONT>                    if (manager.getConfigLogger().isInfoEnabled()) {<a name="line.23"></a>
<FONT color="green">024</FONT>                            manager.getConfigLogger().info("  Parser configuration : Two-Planar with no_covered_roots = " + manager.getOptionValue("planar", "no_covered_roots").toString().toUpperCase() + ", " + "acyclicity = " + manager.getOptionValue("planar", "acyclicity").toString().toUpperCase() + ", planar root handling = " + manager.getOptionValue("2planar" , "planar_root_handling").toString().toUpperCase() + ", reduce on switch = " + manager.getOptionValue("2planar" , "reduceonswitch").toString().toUpperCase() + "\n");<a name="line.24"></a>
<FONT color="green">025</FONT>                    }<a name="line.25"></a>
<FONT color="green">026</FONT>                    return new TwoPlanarConfig(manager.getSymbolTables() , manager.getOptionValue("planar", "no_covered_roots").toString() , manager.getOptionValue("planar", "acyclicity").toString() , manager.getOptionValue("2planar" , "reduceonswitch").toString()  , manager.getOptionValue("2planar" , "planar_root_handling").toString() );<a name="line.26"></a>
<FONT color="green">027</FONT>            }<a name="line.27"></a>
<FONT color="green">028</FONT>            <a name="line.28"></a>
<FONT color="green">029</FONT>            public Function makeFunction(String subFunctionName) throws MaltChainedException {<a name="line.29"></a>
<FONT color="green">030</FONT>                    return new TwoPlanarAddressFunction(subFunctionName, algorithm);<a name="line.30"></a>
<FONT color="green">031</FONT>            }<a name="line.31"></a>
<FONT color="green">032</FONT>    <a name="line.32"></a>
<FONT color="green">033</FONT>            public Algorithm getAlgorithm() {<a name="line.33"></a>
<FONT color="green">034</FONT>                    return algorithm;<a name="line.34"></a>
<FONT color="green">035</FONT>            }<a name="line.35"></a>
<FONT color="green">036</FONT>    <a name="line.36"></a>
<FONT color="green">037</FONT>            public void setAlgorithm(Algorithm algorithm) {<a name="line.37"></a>
<FONT color="green">038</FONT>                    this.algorithm = algorithm;<a name="line.38"></a>
<FONT color="green">039</FONT>            }<a name="line.39"></a>
<FONT color="green">040</FONT>    <a name="line.40"></a>
<FONT color="green">041</FONT>            public DependencyParserConfig getManager() {<a name="line.41"></a>
<FONT color="green">042</FONT>                    return manager;<a name="line.42"></a>
<FONT color="green">043</FONT>            }<a name="line.43"></a>
<FONT color="green">044</FONT>    <a name="line.44"></a>
<FONT color="green">045</FONT>            public void setManager(DependencyParserConfig manager) {<a name="line.45"></a>
<FONT color="green">046</FONT>                    this.manager = manager;<a name="line.46"></a>
<FONT color="green">047</FONT>            }<a name="line.47"></a>
<FONT color="green">048</FONT>    }<a name="line.48"></a>




























































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