本文整理汇总了Java中com.vaadin.data.util.AbstractProperty类的典型用法代码示例。如果您正苦于以下问题:Java AbstractProperty类的具体用法?Java AbstractProperty怎么用?Java AbstractProperty使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbstractProperty类属于com.vaadin.data.util包,在下文中一共展示了AbstractProperty类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initLayout
import com.vaadin.data.util.AbstractProperty; //导入依赖的package包/类
protected void initLayout() {
setSpacing(true);
Label titleLabel = new Label(messages.getMainMessage("PresentationsPopup.title"));
titleLabel.setStyleName("c-table-prefs-title");
titleLabel.setWidth("-1px");
addComponent(titleLabel);
setComponentAlignment(titleLabel, Alignment.MIDDLE_CENTER);
menuBar = new CubaMenuBar();
menuBar.setStyleName("c-table-prefs-list");
menuBar.setWidth("100%");
menuBar.setHeight("-1px");
menuBar.setVertical(true);
addComponent(menuBar);
button = new WebPopupButton();
button.setCaption(messages.getMainMessage("PresentationsPopup.actions"));
addComponent(button.<Component>getComponent());
setComponentAlignment(button.<Component>getComponent(), Alignment.MIDDLE_CENTER);
textSelectionCheckBox = new CheckBox();
textSelectionCheckBox.setImmediate(true);
textSelectionCheckBox.setInvalidCommitted(true);
textSelectionCheckBox.setCaption(messages.getMainMessage("PresentationsPopup.textSelection"));
addComponent(textSelectionCheckBox);
textSelectionCheckBox.setPropertyDataSource(new AbstractProperty() {
@Override
public Object getValue() {
return tableImpl.isTextSelectionEnabled();
}
@Override
public void setValue(Object newValue) throws Property.ReadOnlyException {
if (newValue instanceof Boolean) {
tableImpl.setTextSelectionEnabled((Boolean) newValue);
}
}
@Override
public Class getType() {
return Boolean.class;
}
});
}