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.pool;<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>    <a name="line.4"></a>
<FONT color="green">005</FONT>    public abstract class ObjectPool&lt;T&gt; {<a name="line.5"></a>
<FONT color="green">006</FONT>            protected int keepThreshold;<a name="line.6"></a>
<FONT color="green">007</FONT>    <a name="line.7"></a>
<FONT color="green">008</FONT>            public ObjectPool() {<a name="line.8"></a>
<FONT color="green">009</FONT>                    this(Integer.MAX_VALUE);<a name="line.9"></a>
<FONT color="green">010</FONT>            }<a name="line.10"></a>
<FONT color="green">011</FONT>            <a name="line.11"></a>
<FONT color="green">012</FONT>            public ObjectPool(int keepThreshold) {<a name="line.12"></a>
<FONT color="green">013</FONT>                    setKeepThreshold(keepThreshold);<a name="line.13"></a>
<FONT color="green">014</FONT>            }<a name="line.14"></a>
<FONT color="green">015</FONT>            <a name="line.15"></a>
<FONT color="green">016</FONT>            public int getKeepThreshold() {<a name="line.16"></a>
<FONT color="green">017</FONT>                    return keepThreshold;<a name="line.17"></a>
<FONT color="green">018</FONT>            }<a name="line.18"></a>
<FONT color="green">019</FONT>    <a name="line.19"></a>
<FONT color="green">020</FONT>            public void setKeepThreshold(int keepThreshold) {<a name="line.20"></a>
<FONT color="green">021</FONT>                    this.keepThreshold = keepThreshold;<a name="line.21"></a>
<FONT color="green">022</FONT>            }<a name="line.22"></a>
<FONT color="green">023</FONT>            <a name="line.23"></a>
<FONT color="green">024</FONT>            protected abstract T create() throws MaltChainedException;<a name="line.24"></a>
<FONT color="green">025</FONT>            public abstract void resetObject(T o) throws MaltChainedException;<a name="line.25"></a>
<FONT color="green">026</FONT>            public abstract T checkOut() throws MaltChainedException;<a name="line.26"></a>
<FONT color="green">027</FONT>            public abstract void checkIn(T o) throws MaltChainedException;<a name="line.27"></a>
<FONT color="green">028</FONT>            public abstract void checkInAll() throws MaltChainedException;<a name="line.28"></a>
<FONT color="green">029</FONT>    }<a name="line.29"></a>




























































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