本文整理了Java中org.jboss.weld.environment.se.Weld.selectAlternativeStereotypes()
方法的一些代码示例,展示了Weld.selectAlternativeStereotypes()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Weld.selectAlternativeStereotypes()
方法的具体详情如下:
包路径:org.jboss.weld.environment.se.Weld
类名称:Weld
方法名:selectAlternativeStereotypes
[英]Add alternative stereotype classes to the list of selected alternative stereotypes for the synthetic bean archive.
This method does not add any class to the set of bean classes of the synthetic bean archive.
[中]将替代原型类添加到合成bean归档的选定替代原型列表中。
此方法不会向合成bean归档的bean类集合添加任何类。
代码示例来源:origin: weld/core
/**
* Select alternative stereotypes for the synthetic bean archive, all previous values are removed.
* <p>
* This method does not add any class to the set of bean classes for the synthetic bean archive. It's purpose is solely to compensate the absence of the
* <code>beans.xml</code> descriptor.
*
* @param alternativeStereotypeClasses
* @return self
*/
@SafeVarargs
public final Weld alternativeStereotypes(Class<? extends Annotation>... alternativeStereotypeClasses) {
selectedAlternativeStereotypes.clear();
selectAlternativeStereotypes(alternativeStereotypeClasses);
return this;
}
代码示例来源:origin: weld/core
/**
* Select alternative stereotypes for the synthetic bean archive, all previous values are removed.
* <p>
* This method does not add any class to the set of bean classes for the synthetic bean archive. It's purpose is solely to compensate the absence of the
* <code>beans.xml</code> descriptor.
*
* @param alternativeStereotypeClasses
* @return self
*/
@SafeVarargs
public final Weld alternativeStereotypes(Class<? extends Annotation>... alternativeStereotypeClasses) {
selectedAlternativeStereotypes.clear();
selectAlternativeStereotypes(alternativeStereotypeClasses);
return this;
}
代码示例来源:origin: org.jboss.weld.se/weld-se-shaded
/**
* Select alternative stereotypes for the synthetic bean archive, all previous values are removed.
* <p>
* This method does not add any class to the set of bean classes for the synthetic bean archive. It's purpose is solely to compensate the absence of the
* <code>beans.xml</code> descriptor.
*
* @param alternativeStereotypeClasses
* @return self
*/
@SafeVarargs
public final Weld alternativeStereotypes(Class<? extends Annotation>... alternativeStereotypeClasses) {
selectedAlternativeStereotypes.clear();
selectAlternativeStereotypes(alternativeStereotypeClasses);
return this;
}
内容来源于网络,如有侵权,请联系作者删除!