Codota Logo
org.jboss.weld.annotated.enhanced.jlr
Code IndexAdd Codota to your IDE (free)

How to use org.jboss.weld.annotated.enhanced.jlr

Best Java code snippets using org.jboss.weld.annotated.enhanced.jlr (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
origin: jersey/jersey

public static <T> EnhancedAnnotatedType<T> createEnhancedAnnotatedType(BasicInjectionTarget<T> it) {
  return EnhancedAnnotatedTypeImpl.of(
      (SlimAnnotatedType<T>) it.getAnnotatedType(), ClassTransformer.instance(it.getBeanManager()));
}
origin: jersey/jersey

.getDeclaredEnhancedConstructor(new ConstructorSignatureImpl(analyzer.getConstructor()));
origin: org.jboss.weld.se/weld-se

/**
 * Gets the delegate (class)
 *
 * @return The class
 */
@Override
public Class<T> getDelegate() {
  return getJavaClass();
}
origin: weld/core

/**
 * Gets the property name
 *
 * @return The property name
 * @see org.jboss.weld.annotated.enhanced.EnhancedAnnotatedField#getName()
 */
public String getPropertyName() {
  return getName();
}
origin: weld/core

protected void processMetaAnnotations(SetMultimap<Class<? extends Annotation>, Annotation> metaAnnotationMap, Collection<Annotation> annotations, ClassTransformer classTransformer, boolean declared) {
  for (Annotation annotation : annotations) {
    processMetaAnnotations(metaAnnotationMap, annotation, classTransformer, declared);
  }
}
origin: HotswapProjects/HotswapAgent

private static EnhancedAnnotatedType<?> createAnnotatedTypeForExistingBeanClass(String bdaId, Bean<?> bean) {
  ClassTransformer classTransformer = getClassTransformer();
  SlimAnnotatedType<?> annotatedType = classTransformer.getBackedAnnotatedType(bean.getBeanClass(), bdaId);
  return EnhancedAnnotatedTypeImpl.of(annotatedType, classTransformer);
}
origin: org.jboss.weld.se/weld-se

/**
 * Gets the implementing class
 *
 * @return The class
 */
public Class<? extends T> getAnnotatedClass() {
  return getJavaClass();
}
origin: weld/core

/**
 * Gets the property name
 *
 * @return The property name
 * @see org.jboss.weld.annotated.enhanced.EnhancedAnnotatedField#getName()
 */
public String getPropertyName() {
  return getName();
}
origin: weld/core

protected void processMetaAnnotations(SetMultimap<Class<? extends Annotation>, Annotation> metaAnnotationMap, Collection<Annotation> annotations, ClassTransformer classTransformer, boolean declared) {
  for (Annotation annotation : annotations) {
    processMetaAnnotations(metaAnnotationMap, annotation, classTransformer, declared);
  }
}
origin: HotswapProjects/HotswapAgent

@SuppressWarnings({ "rawtypes", "unchecked" })
private static void doDefineNewManagedBean(BeanManagerImpl beanManager, String bdaId, Class<?> beanClass) {
  try {
    ClassTransformer classTransformer = getClassTransformer();
    SlimAnnotatedType<?> annotatedType = classTransformer.getBackedAnnotatedType(beanClass, bdaId);
    boolean managedBeanOrDecorator = Beans.isTypeManagedBeanOrDecoratorOrInterceptor(annotatedType);
    if (managedBeanOrDecorator) {
      EnhancedAnnotatedType eat = EnhancedAnnotatedTypeImpl.of(annotatedType, classTransformer);
      BeanAttributes attributes = BeanAttributesFactory.forBean(eat, beanManager);
      ManagedBean<?> bean = ManagedBean.of(attributes, eat, beanManager);
      ReflectionHelper.set(beanManager, beanManager.getClass(), "beanSet", Collections.synchronizedSet(new HashSet<Bean<?>>()));
      beanManager.addBean(bean);
      beanManager.getBeanResolver().clear();
      bean.initializeAfterBeanDiscovery();
      LOGGER.debug("Bean defined '{}'", beanClass.getName());
    } else {
      // TODO : define session bean
      LOGGER.warning("Bean NOT? defined '{}', session bean?", beanClass.getName());
    }
  } catch (Exception e) {
    LOGGER.debug("Bean definition failed.", e);
  }
}
origin: weld/core

/**
 * Gets the delegate (class)
 *
 * @return The class
 */
@Override
public Class<T> getDelegate() {
  return getJavaClass();
}
origin: org.jboss.weld.se/weld-se-shaded

/**
 * Gets the property name
 *
 * @return The property name
 * @see org.jboss.weld.annotated.enhanced.EnhancedAnnotatedField#getName()
 */
public String getPropertyName() {
  return getName();
}
origin: weld/core

protected void processMetaAnnotations(SetMultimap<Class<? extends Annotation>, Annotation> metaAnnotationMap, Annotation[] annotations, ClassTransformer classTransformer, boolean declared) {
  for (Annotation annotation : annotations) {
    processMetaAnnotations(metaAnnotationMap, annotation, classTransformer, declared);
  }
}
origin: org.jboss.weld.se/weld-se

  @Override
  public EnhancedAnnotatedType<?> apply(SlimAnnotatedType<?> annotatedType) {
    return EnhancedAnnotatedTypeImpl.of(annotatedType, ClassTransformer.this);
  }
}
origin: weld/core

/**
 * Gets the implementing class
 *
 * @return The class
 */
public Class<? extends T> getAnnotatedClass() {
  return getJavaClass();
}
origin: weld/core

  @Override
  public EnhancedAnnotatedType<?> apply(SlimAnnotatedType<?> annotatedType) {
    return EnhancedAnnotatedTypeImpl.of(annotatedType, ClassTransformer.this);
  }
}
origin: weld/core

/**
 * Gets the implementing class
 *
 * @return The class
 */
public Class<? extends T> getAnnotatedClass() {
  return getJavaClass();
}
origin: weld/core

  @Override
  public EnhancedAnnotatedType<?> apply(SlimAnnotatedType<?> annotatedType) {
    return EnhancedAnnotatedTypeImpl.of(annotatedType, ClassTransformer.this);
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

/**
 * Gets the implementing class
 *
 * @return The class
 */
public Class<? extends T> getAnnotatedClass() {
  return getJavaClass();
}
origin: weld/core

  @Override
  public EnhancedAnnotatedType<?> apply(SlimAnnotatedType<?> annotatedType) {
    return EnhancedAnnotatedTypeImpl.of(annotatedType, ClassTransformer.this);
  }
}
org.jboss.weld.annotated.enhanced.jlr

Most used classes

  • EnhancedAnnotatedTypeImpl
    Represents an annotated class This class is immutable, and therefore threadsafe
  • ConstructorSignatureImpl
  • MethodSignatureImpl
  • AbstractEnhancedAnnotated
    Represents functionality common for all annotated items, mainly different mappings of the annotation
  • AbstractEnhancedAnnotatedMember
    Represents an abstract annotated member (field, method or constructor) This class is immutable, and
  • EnhancedAnnotatedFieldImpl,
  • EnhancedAnnotatedMethodImpl,
  • EnhancedAnnotatedParameterImpl,
  • EnhancedAnnotationImpl
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now