org.processbase.ui.core.template.ButtonBar.java Source code

Java tutorial

Introduction

Here is the source code for org.processbase.ui.core.template.ButtonBar.java

Source

/**
 * Copyright (C) 2011 PROCESSBASE Ltd.
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation
 * version 2.1 of the License.
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, see <http://www.gnu.org/licenses/>.
 */
package org.processbase.ui.core.template;

import com.vaadin.ui.Button;
import com.vaadin.ui.HorizontalLayout;

/**
 *
 * @author mgubaidullin
 */
public class ButtonBar extends HorizontalLayout {

    public ButtonBar() {
        super();
        initUI();
    }

    public void initUI() {
        setMargin(true, true, true, true);
        setSpacing(true);
        //        setWidth("100%");
        //        setSizeFull();
        setStyleName("buttonbar");
    }

    public void addButton(Button button) {
        this.addComponent(button);
    }

    public void addButton(Button button, int index) {
        this.addComponent(button, index);
    }

    public void removeButton(Button button) {
        this.removeComponent(button);
    }

}