All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.spring.roo.addon.EntityView-template Maven / Gradle / Ivy

package __ENTITY_VIEW_PACKAGE__;

__ABSTRACT_ENTITY_VIEW_IMPORT__
__ENTITY_EDITOR_IMPORT__
import com.vaadin.spring.roo.addon.annotations.RooVaadinEntityView;
import com.vaadin.ui.Table;

@RooVaadinEntityView(__ENTITY_VIEW_ANNOTATION_PARAMETERS__)
public class __ENTITY_VIEW_CLASS__ extends __ABSTRACT_ENTITY_VIEW_CLASS__<__ENTITY_PACKAGE__.__ENTITY_CLASS__> {

    @Override
    protected EntityEditor createForm() {
        return new __ENTITY_FORM_CLASS__();
    }

    @Override
    protected void configureTable(Table table) {
        table.setContainerDataSource(getTableContainer());
        table.setVisibleColumns(getTableColumns());

        setupGeneratedColumns(table);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy