Package com.dodo.blog.ui.component.container

Examples of com.dodo.blog.ui.component.container.H1


    @Override
    public void onRender()
    {
        html.add( body );

        H1 h1 = new H1( "Error occurred" );
        h1.setAttribute( "style", "color: #fff; background: #a00;padding: 10px;" );
        body.add( h1 );

        String err;
        if ( throwable instanceof InvocationTargetException )
        {
View Full Code Here

TOP

Related Classes of com.dodo.blog.ui.component.container.H1

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.