org.jboss.weld.environment.se.Weld.syntheticMetadata()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(8.0k)|赞(0)|评价(0)|浏览(83)

本文整理了Java中org.jboss.weld.environment.se.Weld.syntheticMetadata()方法的一些代码示例,展示了Weld.syntheticMetadata()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Weld.syntheticMetadata()方法的具体详情如下:
包路径:org.jboss.weld.environment.se.Weld
类名称:Weld
方法名:syntheticMetadata

Weld.syntheticMetadata介绍

暂无

代码示例

代码示例来源:origin: org.jboss.weld.se/weld-se

/**
 * Add a decorator class to the list of enabled decorators for the synthetic bean archive.
 * <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 decoratorClass
 * @return self
 */
public Weld addDecorator(Class<?> decoratorClass) {
  enabledDecorators.add(syntheticMetadata(decoratorClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an alternative class to the list of selected alternatives for a synthetic bean archive.
 * <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 alternativeClass
 * @return self
 */
public Weld addAlternative(Class<?> alternativeClass) {
  selectedAlternatives.add(syntheticMetadata(alternativeClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an alternative stereotype class to the list of selected alternative stereotypes for a synthetic bean archive.
 * <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 alternativeStereotypeClass
 * @return self
 */
public Weld addAlternativeStereotype(Class<? extends Annotation> alternativeStereotypeClass) {
  selectedAlternativeStereotypes.add(syntheticMetadata(alternativeStereotypeClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an alternative stereotype class to the list of selected alternative stereotypes for a synthetic bean archive.
 * <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 alternativeStereotypeClass
 * @return self
 */
public Weld addAlternativeStereotype(Class<? extends Annotation> alternativeStereotypeClass) {
  selectedAlternativeStereotypes.add(syntheticMetadata(alternativeStereotypeClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se-shaded

/**
 * Add an alternative class to the list of selected alternatives for a synthetic bean archive.
 * <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 alternativeClass
 * @return self
 */
public Weld addAlternative(Class<?> alternativeClass) {
  selectedAlternatives.add(syntheticMetadata(alternativeClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se

/**
 * Add an alternative class to the list of selected alternatives for a synthetic bean archive.
 * <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 alternativeClass
 * @return self
 */
public Weld addAlternative(Class<?> alternativeClass) {
  selectedAlternatives.add(syntheticMetadata(alternativeClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an interceptor class to the list of enabled interceptors for the synthetic bean archive.
 * <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 interceptorClass
 * @return self
 */
public Weld addInterceptor(Class<?> interceptorClass) {
  enabledInterceptors.add(syntheticMetadata(interceptorClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se

/**
 * Add an interceptor class to the list of enabled interceptors for the synthetic bean archive.
 * <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 interceptorClass
 * @return self
 */
public Weld addInterceptor(Class<?> interceptorClass) {
  enabledInterceptors.add(syntheticMetadata(interceptorClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se

/**
 * Add an alternative stereotype class to the list of selected alternative stereotypes for a synthetic bean archive.
 * <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 alternativeStereotypeClass
 * @return self
 */
public Weld addAlternativeStereotype(Class<? extends Annotation> alternativeStereotypeClass) {
  selectedAlternativeStereotypes.add(syntheticMetadata(alternativeStereotypeClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an interceptor class to the list of enabled interceptors for the synthetic bean archive.
 * <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 interceptorClass
 * @return self
 */
public Weld addInterceptor(Class<?> interceptorClass) {
  enabledInterceptors.add(syntheticMetadata(interceptorClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add a decorator class to the list of enabled decorators for the synthetic bean archive.
 * <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 decoratorClass
 * @return self
 */
public Weld addDecorator(Class<?> decoratorClass) {
  enabledDecorators.add(syntheticMetadata(decoratorClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se-shaded

/**
 * Add a decorator class to the list of enabled decorators for the synthetic bean archive.
 * <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 decoratorClass
 * @return self
 */
public Weld addDecorator(Class<?> decoratorClass) {
  enabledDecorators.add(syntheticMetadata(decoratorClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add an alternative class to the list of selected alternatives for a synthetic bean archive.
 * <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 alternativeClass
 * @return self
 */
public Weld addAlternative(Class<?> alternativeClass) {
  selectedAlternatives.add(syntheticMetadata(alternativeClass));
  return this;
}

代码示例来源:origin: weld/core

/**
 * Add a decorator class to the list of enabled decorators for the synthetic bean archive.
 * <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 decoratorClass
 * @return self
 */
public Weld addDecorator(Class<?> decoratorClass) {
  enabledDecorators.add(syntheticMetadata(decoratorClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se-shaded

/**
 * Add an interceptor class to the list of enabled interceptors for the synthetic bean archive.
 * <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 interceptorClass
 * @return self
 */
public Weld addInterceptor(Class<?> interceptorClass) {
  enabledInterceptors.add(syntheticMetadata(interceptorClass));
  return this;
}

代码示例来源:origin: org.jboss.weld.se/weld-se-shaded

/**
 * Add an alternative stereotype class to the list of selected alternative stereotypes for a synthetic bean archive.
 * <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 alternativeStereotypeClass
 * @return self
 */
public Weld addAlternativeStereotype(Class<? extends Annotation> alternativeStereotypeClass) {
  selectedAlternativeStereotypes.add(syntheticMetadata(alternativeStereotypeClass));
  return this;
}

相关文章