本文整理汇总了Java中com.haulmont.cuba.gui.data.CollectionDatasource.removeCollectionChangeListener方法的典型用法代码示例。如果您正苦于以下问题:Java CollectionDatasource.removeCollectionChangeListener方法的具体用法?Java CollectionDatasource.removeCollectionChangeListener怎么用?Java CollectionDatasource.removeCollectionChangeListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.haulmont.cuba.gui.data.CollectionDatasource
的用法示例。
在下文中一共展示了CollectionDatasource.removeCollectionChangeListener方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: unsubscribe
import com.haulmont.cuba.gui.data.CollectionDatasource; //导入方法依赖的package包/类
@Override
public void unsubscribe() {
if (item instanceof CollectionDatasource) {
CollectionDatasource datasource = (CollectionDatasource) item;
// noinspection unchecked
datasource.removeCollectionChangeListener(weakCollectionChangeListener);
weakCollectionChangeListener = null;
}
item = null;
metaClass = null;
properties.values().forEach(PropertyWrapper::unsubscribe);
properties.clear();
}
示例2: unbind
import com.haulmont.cuba.gui.data.CollectionDatasource; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public void unbind(CollectionDatasource ds) {
ds.removeItemChangeListener(weakItemChangeListener);
weakItemChangeListener = null;
ds.removeItemPropertyChangeListener(weakItemPropertyChangeListener);
weakItemPropertyChangeListener = null;
ds.removeStateChangeListener(weakStateChangeListener);
weakStateChangeListener = null;
ds.removeCollectionChangeListener(weakCollectionChangeListener);
weakCollectionChangeListener = null;
}