Package org.mapstruct.ap.model

Examples of org.mapstruct.ap.model.Annotation


        return "spring";
    }

    @Override
    protected Annotation getTypeAnnotation() {
        return new Annotation( getTypeFactory().getType( "org.springframework.stereotype.Component" ) );
    }
View Full Code Here


        return new Annotation( getTypeFactory().getType( "org.springframework.stereotype.Component" ) );
    }

    @Override
    protected Annotation getMapperReferenceAnnotation() {
        return new Annotation( getTypeFactory().getType( "org.springframework.beans.factory.annotation.Autowired" ) );
    }
View Full Code Here

        return "cdi";
    }

    @Override
    protected Annotation getTypeAnnotation() {
        return new Annotation( getTypeFactory().getType( "javax.enterprise.context.ApplicationScoped" ) );
    }
View Full Code Here

        return new Annotation( getTypeFactory().getType( "javax.enterprise.context.ApplicationScoped" ) );
    }

    @Override
    protected Annotation getMapperReferenceAnnotation() {
        return new Annotation( getTypeFactory().getType( "javax.inject.Inject" ) );
    }
View Full Code Here

        return "jsr330";
    }

    @Override
    protected Annotation getTypeAnnotation() {
        return new Annotation( getTypeFactory().getType( "javax.inject.Named" ) );
    }
View Full Code Here

        return new Annotation( getTypeFactory().getType( "javax.inject.Named" ) );
    }

    @Override
    protected Annotation getMapperReferenceAnnotation() {
        return new Annotation( getTypeFactory().getType( "javax.inject.Inject" ) );
    }
View Full Code Here

TOP

Related Classes of org.mapstruct.ap.model.Annotation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.