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


Java DefaultGroovyMethods.mixin方法代码示例

本文整理汇总了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);
  }
}
 
开发者ID:KHP-Informatics,项目名称:ADRApp,代码行数:22,代码来源:GroovySupport.java

示例2: mixin

import org.codehaus.groovy.runtime.DefaultGroovyMethods; //导入方法依赖的package包/类
public void mixin(List categories) {
    DefaultGroovyMethods.mixin(ExpandoMetaClass.this, categories);
}
 
开发者ID:apache,项目名称:groovy,代码行数:4,代码来源:ExpandoMetaClass.java


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