Package com.thoughtworks.qdox.model

Examples of com.thoughtworks.qdox.model.DefaultDocletTagFactory


    private DefaultDocletTagFactory docletTagFactory;
    private final ClassLoader dependencyClassLoader;

    public QDox129(final ClassLoader dependencyClassLoader) {
        this.dependencyClassLoader = dependencyClassLoader;
        docletTagFactory = new DefaultDocletTagFactory();
    }
View Full Code Here


        final String description = "A Random Thought";
        final PhoenixAttributeInterceptor interceptor = new PhoenixAttributeInterceptor();
        final Attribute attribute = new Attribute( "phoenix:mx-attribute" );
        final JavaMethod method = new JavaMethod();
        final ArrayList tags = new ArrayList();
        final DocletTagFactory factory = new DefaultDocletTagFactory();
        tags.add(
            factory.createDocletTag( "phoenix:mx-description", description ) );
        method.setTags( tags );
        final Attribute result =
            interceptor.processMethodAttribute( method, attribute );
        assertNotNull( "attribute", result );
        assertEquals( "attribute.name", "mx.attribute", result.getName() );
View Full Code Here

    /**
     * Creates the {@link DocletTagFactory} to be used by the collector.
     * @return the doclet tag factory
     */
    protected DocletTagFactory createDocletTagFactory() {
        return new DefaultDocletTagFactory();
    }
View Full Code Here

    private String encoding = System.getProperty("file.encoding");
    private boolean debugLexer;
    private boolean debugParser;

    public JavaDocBuilder() {
        this(new DefaultDocletTagFactory());
    }
View Full Code Here

        JavaSource[] sources = builder.getSources();
        processSources(sources);
    }

    protected DocletTagFactory createDocletTagFactory() {
        return new DefaultDocletTagFactory();
    }
View Full Code Here

        }
    }

    protected DocletTagFactory createDocletTagFactory()
    {
        return new DefaultDocletTagFactory();
    }
View Full Code Here

    /**
     * Creates the {@link DocletTagFactory} to be used by the collector.
     * @return the doclet tag factory
     */
    protected DocletTagFactory createDocletTagFactory() {
        return new DefaultDocletTagFactory();
    }
View Full Code Here

            throw parseException;
        }
    }

    public JavaDocBuilder() {
        this(new DefaultDocletTagFactory());
    }
View Full Code Here

        this.context = new JavaClassContext(this);
        this.context.setClassLibrary(classLibrary);
    }

    public JavaDocBuilder(ClassLibrary classLibrary) {
        this(new DefaultDocletTagFactory(), classLibrary);
    }
View Full Code Here

TOP

Related Classes of com.thoughtworks.qdox.model.DefaultDocletTagFactory

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.