List of usage examples for com.google.gwt.core.ext.typeinfo JConstructor getAnnotations
Annotation[] getAnnotations();
From source file:org.jboss.errai.codegen.meta.impl.gwt.GWTConstructor.java
License:Apache License
public GWTConstructor(final TypeOracle oracle, final JConstructor c) { this.constructor = c; this.annotations = AnnotationParser.parseAnnotations(c.getAnnotations()); this.declaringClass = GWTClass.newInstance(oracle, c.getEnclosingType()); this.oracle = oracle; }