ui.item.InfoActions.java Source code

Java tutorial

Introduction

Here is the source code for ui.item.InfoActions.java

Source

/*
 * To change this license header, choose License Headers in Entrepeneurship Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package ui.item;

import com.vaadin.ui.GridLayout;

/**
 *
 * @author azc
 */
public class InfoActions extends GridLayout {

    public InfoActions() {
        super(2, 3);
        setSizeFull();
        setSpacing(true);
        setStyleName("info-actions");
    }

}