Example usage for com.google.gwt.core.ext.typeinfo JPackage getAnnotations

List of usage examples for com.google.gwt.core.ext.typeinfo JPackage getAnnotations

Introduction

In this page you can find the example usage for com.google.gwt.core.ext.typeinfo JPackage getAnnotations.

Prototype

Annotation[] getAnnotations();

Source Link

Document

Returns all the annotations present on this element.

Usage

From source file:org.lirazs.gbackbone.gen.AnnotationsHelper.java

License:Apache License

public static Annotation[] getAnnotations(JPackage type) {
    return type.getAnnotations();
}