ui.panel.LifetimePanel.java Source code

Java tutorial

Introduction

Here is the source code for ui.panel.LifetimePanel.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.panel;

import com.vaadin.ui.Component;
import com.vaadin.ui.Panel;

/**
 *
 * @author azc
 */
public class LifetimePanel extends Panel {

    public LifetimePanel(Component component) {
        super(component);
        setSizeFull();
    }

}