Package com.dodo.blog.ui.component.composite

Source Code of com.dodo.blog.ui.component.composite.FieldSet

package com.dodo.blog.ui.component.composite;

import com.dodo.blog.ui.component.container.Container;
import com.dodo.blog.ui.component.container.Panel;

/**
* @author <a href="mailto:pohorelec@comvai.com">Jozef Pohorelec</a>
*/
public class FieldSet
        extends Container
{
    private static final long serialVersionUID = 1L;

    public FieldSet()
    {
        this( null );
    }

    public FieldSet( String label )
    {
        super( Tag.FIELDSET );

        if ( label != null )
        {
            Panel legend = new Panel();
            legend.setClassName( "legend" );
            legend.add( label );
            add( legend );
        }
    }

}
TOP

Related Classes of com.dodo.blog.ui.component.composite.FieldSet

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.