Package org.apache.commons.jelly.impl

Examples of org.apache.commons.jelly.impl.WeakReferenceWrapperScript


     *
     */
    public static void trimScript(Script body) {
        synchronized(body) {
            if (body instanceof WeakReferenceWrapperScript) {
                WeakReferenceWrapperScript wrrs = (WeakReferenceWrapperScript) body;
                try {
                    wrrs.trimWhitespace();
                } catch (JellyTagException e) {
                    //TODO handle this exception once the Tag interface allows JellyTagException to be thrown
                    return;
                }
            } else if ( body instanceof CompositeTextScriptBlock ) {
View Full Code Here

TOP

Related Classes of org.apache.commons.jelly.impl.WeakReferenceWrapperScript

Copyright © 2018 www.massapicom. 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.