use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class RrdField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
VerticalLayout layout = new VerticalLayout();
layout.addComponent(step);
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class MaskElementField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
final VerticalLayout layout = new VerticalLayout();
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class MaskVarbindField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
VerticalLayout layout = new VerticalLayout();
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class VarbindsDecodeField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
VerticalLayout layout = new VerticalLayout();
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class SurveillanceViewsConfigUI method init.
/**
* {@inheritDoc}
*/
@Override
protected void init(VaadinRequest request) {
/**
* Force the reload of the configuration
*/
SurveillanceViewProvider.getInstance().load();
/**
* Create the basic layout
*/
VerticalLayout rootLayout = new VerticalLayout();
rootLayout.setSizeFull();
rootLayout.setSpacing(true);
rootLayout.addComponent(new SurveillanceViewsConfigList(m_surveillanceViewService));
setContent(rootLayout);
}
Aggregations