本文整理汇总了Java中org.gradle.internal.Actions.filter方法的典型用法代码示例。如果您正苦于以下问题:Java Actions.filter方法的具体用法?Java Actions.filter怎么用?Java Actions.filter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.gradle.internal.Actions
的用法示例。
在下文中一共展示了Actions.filter方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerAddAction
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super S> registerAddAction(Action<? super S> addAction) {
return super.registerAddAction(Actions.<S>filter(addAction, filter));
}
示例2: registerRemoveAction
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super S> registerRemoveAction(Action<? super S> removeAction) {
return super.registerRemoveAction(Actions.<S>filter(removeAction, filter));
}
示例3: whenObjectAdded
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super T> whenObjectAdded(Action<? super T> action) {
return super.whenObjectAdded(Actions.filter(action, uniqueSpec));
}
示例4: whenObjectRemoved
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super T> whenObjectRemoved(Action<? super T> action) {
return super.whenObjectRemoved(Actions.filter(action, notInSpec));
}
示例5: whenObjectAdded
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super T> whenObjectAdded(Action<? super T> action) {
return super.whenObjectAdded(Actions.<T>filter(action, uniqueSpec));
}
示例6: whenObjectRemoved
import org.gradle.internal.Actions; //导入方法依赖的package包/类
public Action<? super T> whenObjectRemoved(Action<? super T> action) {
return super.whenObjectRemoved(Actions.<T>filter(action, notInSpec));
}