Package org.exolab.javasource

Examples of org.exolab.javasource.JComment


        // hack for the moment
        // to avoid the compiler complaining with java.util.Date
        jClass.removeImport("org.exolab.castor.types.Date");

        // add header
        JComment comment = new JComment(JComment.HEADER_STYLE);
        comment.appendComment(header);
        jClass.setHeader(comment);

        // print
        jClass.print(outputDir, lineSeparator);
    }
View Full Code Here


            final SourceGenerator sourceGenerator,
            final String conflictStrategyType,
            final String jClassPrinterType) {
        this._dialog = dialog;
        this._sourceGenerator = sourceGenerator;
        this._header = new JComment(JComment.HEADER_STYLE);
        this._descriptorSourceFactory = new DescriptorSourceFactory(_sourceGenerator);
        this._jdoDescriptorSourceFactory = new JDOClassDescriptorFactory(_sourceGenerator);
        this._mappingSourceFactory = new MappingFileSourceFactory(_sourceGenerator);

        final String strategy = sourceGenerator.getProperty(
View Full Code Here

TOP

Related Classes of org.exolab.javasource.JComment

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.