本文整理汇总了Java中org.codehaus.groovy.runtime.DefaultGroovyMethods.mixin方法的典型用法代码示例。如果您正苦于以下问题:Java DefaultGroovyMethods.mixin方法的具体用法?Java DefaultGroovyMethods.mixin怎么用?Java DefaultGroovyMethods.mixin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.codehaus.groovy.runtime.DefaultGroovyMethods
的用法示例。
在下文中一共展示了DefaultGroovyMethods.mixin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mixinGlobally
import org.codehaus.groovy.runtime.DefaultGroovyMethods; //导入方法依赖的package包/类
/**
* Mix all the static methods of the given class into their
* respective types.
* @param classToMix a category class.
*/
protected void mixinGlobally(Class<?> classToMix) {
// find the set of types into which it needs to be mixed.
// this means the types of the first argument of each
// static method in the class.
Set<Class<?>> typesToMixInto = new HashSet<Class<?>>();
for(Method method : classToMix.getMethods()) {
if(Modifier.isStatic(method.getModifiers())
&& method.getDeclaringClass() == classToMix
&& method.getParameterTypes().length > 0) {
typesToMixInto.add(method.getParameterTypes()[0]);
}
}
for(Class<?> clazz : typesToMixInto) {
DefaultGroovyMethods.mixin(clazz, classToMix);
}
}
示例2: mixin
import org.codehaus.groovy.runtime.DefaultGroovyMethods; //导入方法依赖的package包/类
public void mixin(List categories) {
DefaultGroovyMethods.mixin(ExpandoMetaClass.this, categories);
}