OW2 Consortium telosys

Rev

Blame | Last modification | View Log | RSS feed

package org.objectweb.telosys.uil.taglib.widget.data;

/**
 */
public class MenuBox extends Menu
{
    public MenuBox( String sId )
    {
        super(MENU_BAR, sId, null, null, null, null, null);
    }

    public MenuBox(String sId, String sCl )
    {
        super(MENU_BAR, sId, sCl, null, null, null, null);
    }
    
    public MenuBox(String sId, String sCl, String sStyle )
    {
        super(MENU_BAR, sId, sCl, sStyle, null, null, null );
    }
    
    public MenuBox(String sId, String sCl, String sStyle, String sWidth)
    {
        super(MENU_BAR, sId, sCl, sStyle, sWidth, null, null);
    }

//    public MenuBox(String sId, String sCl, String sStyle, String sWidth, String sHeight)
//    {
//        super(MENU_BAR, sId, sCl, sStyle, sWidth, sHeight, null);
//    }

}