Package org.apache.ecs.xhtml

Examples of org.apache.ecs.xhtml.pre


        div d = new div();
        d.setClass( "debug" );
        d.addElement( "Plugin execution failed, stack trace follows:" );
        StringWriter out = new StringWriter();
        t.printStackTrace( new PrintWriter( out ) );
        d.addElement( new pre( out.toString() ) );
        d.addElement( new b( "Parameters to the plugin" ) );

        ul list = new ul();
        for( Iterator<Map.Entry< String, String > > i = params.entrySet().iterator(); i.hasNext(); ) {
            Map.Entry< String, String > e = i.next();
View Full Code Here

TOP

Related Classes of org.apache.ecs.xhtml.pre

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.