Package org.codehaus.plexus.metadata.gleaner

Examples of org.codehaus.plexus.metadata.gleaner.AnnotationComponentGleaner


    {
        assert request.outputFile != null;

        if ( extractors == null || extractors.length == 0 )
        {
            extractors = new ComponentDescriptorExtractor[] { new SourceComponentDescriptorExtractor(), new ClassComponentDescriptorExtractor( new AnnotationComponentGleaner() ) };
        }

        List<ComponentDescriptor<?>> descriptors = new ArrayList<ComponentDescriptor<?>>();

        for ( int i = 0; i < extractors.length; i++ )
View Full Code Here


        this.gleaner = gleaner;
    }

    public ClassComponentDescriptorExtractor()
    {
        this.gleaner = new AnnotationComponentGleaner();
    }
View Full Code Here

TOP

Related Classes of org.codehaus.plexus.metadata.gleaner.AnnotationComponentGleaner

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.