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


Java InjectTag类代码示例

本文整理汇总了Java中org.osgl.inject.annotation.InjectTag的典型用法代码示例。如果您正苦于以下问题:Java InjectTag类的具体用法?Java InjectTag怎么用?Java InjectTag使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: testTaggedAnnotation

import org.osgl.inject.annotation.InjectTag; //导入依赖的package包/类
@Test
public void testTaggedAnnotation() throws Exception {
    Constructor<LeatherSmoother.Host> constructor = LeatherSmoother.Host.class.getConstructor(LeatherSmoother.class);
    Annotation[] annotations = constructor.getParameterAnnotations()[0];
    Type paramType = constructor.getGenericParameterTypes()[0];
    BeanSpec spec = BeanSpec.of(paramType, annotations, Genie.create());
    eq(1, spec.taggedAnnotations(Qualifier.class).length);
    eq(0, spec.taggedAnnotations(InjectTag.class).length);
    eq(0, spec.taggedAnnotations(Retention.class).length);
    eq(0, spec.taggedAnnotations(Target.class).length);
    eq(0, spec.taggedAnnotations(Inherited.class).length);
    eq(0, spec.taggedAnnotations(Documented.class).length);
}
 
开发者ID:osglworks,项目名称:java-di,代码行数:14,代码来源:BeanSpecTest.java


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