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

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


    public abstract TableHeader[] getTableHeaders();

    public void addColumn( Component component )
    {
        Td col = new Td();
        col.add( component );
        content.add( col );
    }
View Full Code Here


        content.add( col );
    }

    public void addColumn( String text )
    {
        Td col = new Td();
        col.setInnerHtml( text );
        content.add( col );
    }
View Full Code Here

        content.add( col );
    }

    public void addColumn( Boolean bool )
    {
        Td col = new Td();
        col.setInnerHtml( bool.toString() );
        content.add( col );
    }
View Full Code Here

        content.add( col );
    }

    public void addColumn( Date date, SimpleDateFormat format )
    {
        Td col = new Td();
        col.setInnerHtml( FormatUtil.formatDate( date, format ) );
        content.add( col );
    }
View Full Code Here

        content.add( col );
    }

    public void addColumn( Component... components )
    {
        Td col = new Td();
        for ( Component c : components )
        {
            col.add( c );
        }

        content.add( col );
    }
View Full Code Here

TOP

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

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.