当前位置: 首页>>代码示例>>Java>>正文


Java Property.ValueChangeNotifier方法代码示例

本文整理汇总了Java中com.vaadin.data.Property.ValueChangeNotifier方法的典型用法代码示例。如果您正苦于以下问题:Java Property.ValueChangeNotifier方法的具体用法?Java Property.ValueChangeNotifier怎么用?Java Property.ValueChangeNotifier使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.vaadin.data.Property的用法示例。


在下文中一共展示了Property.ValueChangeNotifier方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setPropertyDataSource

import com.vaadin.data.Property; //导入方法依赖的package包/类
@Override
@SuppressWarnings({ "rawtypes", "unchecked" })
public void setPropertyDataSource(final Property newDataSource)
{
	// Stops listening the old data source changes
	if (dataSource instanceof Property.ValueChangeNotifier)
	{
		((Property.ValueChangeNotifier)dataSource).removeValueChangeListener(propertyListener);
	}

	dataSource = newDataSource;
	updateTextFromDataSource();

	// Listens the new data source if possible
	if (dataSource instanceof Property.ValueChangeNotifier)
	{
		((Property.ValueChangeNotifier)dataSource).addValueChangeListener(propertyListener);
	}

	markAsDirty();
}
 
开发者ID:metasfresh,项目名称:metasfresh-procurement-webui,代码行数:22,代码来源:TextOverlay.java

示例2: addFieldChangeListener

import com.vaadin.data.Property; //导入方法依赖的package包/类
@Override
public void addFieldChangeListener(String fieldId, PropertyChangeListener listener) {
	Component c = getComponentById(fieldId);
	if (c instanceof Property.ValueChangeNotifier) {
		FieldValueListener fl = new FieldValueListener();
		fl.listener = listener;
		((Property.ValueChangeNotifier) c).addListener(fl);
		mapListeners.put(listener, fl);
	} else {
		LOG.warn("Listener not added to field because filed has not recognozible type. FieldId: {}", fieldId);
	}
}
 
开发者ID:frincon,项目名称:abstractform,代码行数:13,代码来源:VaadinFormInstanceImpl.java

示例3: removeFieldChangeListener

import com.vaadin.data.Property; //导入方法依赖的package包/类
@Override
public void removeFieldChangeListener(String fieldId, PropertyChangeListener listener) {
	Component c = getComponentById(fieldId);
	if (c instanceof Property.ValueChangeNotifier) {
		if (mapListeners.containsKey(listener)) {
			FieldValueListener fl = mapListeners.remove(listener);
			((Property.ValueChangeNotifier) c).removeListener(fl);
		} else {
			LOG.warn("Listener not removed because not added yet. FieldId: {}", fieldId);

		}
	} else {
		LOG.warn("Listener not removed because filed has not recognozible type. FieldId: {}", fieldId);
	}
}
 
开发者ID:frincon,项目名称:abstractform,代码行数:16,代码来源:VaadinFormInstanceImpl.java


注:本文中的com.vaadin.data.Property.ValueChangeNotifier方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。