本文整理汇总了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);
}