Search in sources :

Example 1 with ObjectLiteralAnnotationTerm

use of org.eclipse.ceylon.compiler.java.codegen.ObjectLiteralAnnotationTerm in project ceylon by eclipse.

the class AnnotationLoader method readObjectValuesAnnotation.

private LiteralAnnotationTerm readObjectValuesAnnotation(Module moduleScope, AnnotationMirror valueAnnotation, boolean singleValue) {
    if (singleValue) {
        TypeMirror klass = getAnnotationClassValues(valueAnnotation, "value").get(0);
        Type type = modelLoader.obtainType(moduleScope, klass, null, null);
        ObjectLiteralAnnotationTerm term = new ObjectLiteralAnnotationTerm(type);
        return term;
    } else {
        CollectionLiteralAnnotationTerm result = new CollectionLiteralAnnotationTerm(ObjectLiteralAnnotationTerm.FACTORY);
        for (TypeMirror klass : getAnnotationClassValues(valueAnnotation, "value")) {
            Type type = modelLoader.obtainType(moduleScope, klass, null, null);
            result.addElement(new ObjectLiteralAnnotationTerm(type));
        }
        return result;
    }
}
Also used : Type(org.eclipse.ceylon.model.typechecker.model.Type) DeclarationType(org.eclipse.ceylon.model.loader.ModelLoader.DeclarationType) ObjectLiteralAnnotationTerm(org.eclipse.ceylon.compiler.java.codegen.ObjectLiteralAnnotationTerm) TypeMirror(org.eclipse.ceylon.model.loader.mirror.TypeMirror) CollectionLiteralAnnotationTerm(org.eclipse.ceylon.compiler.java.codegen.CollectionLiteralAnnotationTerm)

Aggregations

CollectionLiteralAnnotationTerm (org.eclipse.ceylon.compiler.java.codegen.CollectionLiteralAnnotationTerm)1 ObjectLiteralAnnotationTerm (org.eclipse.ceylon.compiler.java.codegen.ObjectLiteralAnnotationTerm)1 DeclarationType (org.eclipse.ceylon.model.loader.ModelLoader.DeclarationType)1 TypeMirror (org.eclipse.ceylon.model.loader.mirror.TypeMirror)1 Type (org.eclipse.ceylon.model.typechecker.model.Type)1