Package javax.servlet.jsp.tagext

Examples of javax.servlet.jsp.tagext.Tag.release()


     * handler pool.
     */
    public synchronized void release() {
        for (int i = current; i >= 0; i--) {
            Tag handler = handlers[i];
            handler.release();
            try {
                instanceManager.destroyInstance(handler);
            } catch (Exception e) {
                Throwable t = ExceptionUtils.unwrapInvocationTargetException(e);
                ExceptionUtils.handleThrowable(t);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.