Examples of addFlag()


Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Prints out additional messages when creating source.";
        allOptions.addFlag(ARGUMENT_VERBOSE, "", desc, true);

        //-- fail on first error flag
        desc = "Causes source generation to fail on the first error encountered.";
        allOptions.addFlag(ARGUMENT_FAIL_ON_ERROR, "", desc, true);

        //-- no descriptors flag
        desc = "Disables the generation of the Class descriptors.";
        allOptions.addFlag(ARGUMENT_DISABLE_DESCRIPTORS, "", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Causes source generation to fail on the first error encountered.";
        allOptions.addFlag(ARGUMENT_FAIL_ON_ERROR, "", desc, true);

        //-- no descriptors flag
        desc = "Disables the generation of the Class descriptors.";
        allOptions.addFlag(ARGUMENT_DISABLE_DESCRIPTORS, "", desc, true);

        //-- mapping file flag
        desc = "Indicates that a mapping file should be generated.";
        allOptions.addFlag(ARGUMENT_GENERATE_MAPPING, "mapping filename", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Disables the generation of the Class descriptors.";
        allOptions.addFlag(ARGUMENT_DISABLE_DESCRIPTORS, "", desc, true);

        //-- mapping file flag
        desc = "Indicates that a mapping file should be generated.";
        allOptions.addFlag(ARGUMENT_GENERATE_MAPPING, "mapping filename", desc, true);

        //-- source generator types name flag
        desc = "Sets the source generator types name (SGTypeFactory).";
        allOptions.addFlag(ARGUMENT_TYPES, "types", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Indicates that a mapping file should be generated.";
        allOptions.addFlag(ARGUMENT_GENERATE_MAPPING, "mapping filename", desc, true);

        //-- source generator types name flag
        desc = "Sets the source generator types name (SGTypeFactory).";
        allOptions.addFlag(ARGUMENT_TYPES, "types", desc, true);

        //-- We temporarily maintain backwards compatibility, but this argument is deprecated
        desc = "";
        allOptions.addFlag(ARGUMENT_TYPES_DEPRECATED, "collections class name", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Sets the source generator types name (SGTypeFactory).";
        allOptions.addFlag(ARGUMENT_TYPES, "types", desc, true);

        //-- We temporarily maintain backwards compatibility, but this argument is deprecated
        desc = "";
        allOptions.addFlag(ARGUMENT_TYPES_DEPRECATED, "collections class name", desc, true);

        //-- no marshaling framework methods
        desc = "Disables the generation of the methods specific to the XML marshaling framework.";
        allOptions.addFlag(ARGUMENT_NOMARSHALL, "", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "";
        allOptions.addFlag(ARGUMENT_TYPES_DEPRECATED, "collections class name", desc, true);

        //-- no marshaling framework methods
        desc = "Disables the generation of the methods specific to the XML marshaling framework.";
        allOptions.addFlag(ARGUMENT_NOMARSHALL, "", desc, true);

        //-- implements org.castor.xmlctf.CastorTestable?
        desc = "Implements some specific methods to allow the generated classes"
                + " to be used with Castor Testing Framework.";
        allOptions.addFlag(ARGUMENT_TESTABLE, "", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        allOptions.addFlag(ARGUMENT_NOMARSHALL, "", desc, true);

        //-- implements org.castor.xmlctf.CastorTestable?
        desc = "Implements some specific methods to allow the generated classes"
                + " to be used with Castor Testing Framework.";
        allOptions.addFlag(ARGUMENT_TESTABLE, "", desc, true);

        //-- use SAX1?
        desc = "Uses SAX 1 in the generated code.";
        allOptions.addFlag(ARGUMENT_SAX1, "", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

                + " to be used with Castor Testing Framework.";
        allOptions.addFlag(ARGUMENT_TESTABLE, "", desc, true);

        //-- use SAX1?
        desc = "Uses SAX 1 in the generated code.";
        allOptions.addFlag(ARGUMENT_SAX1, "", desc, true);

        //-- Source Generator Binding
        desc = "Sets the Source Generator Binding File name.";
        allOptions.addFlag(ARGUMENT_BINDING_FILENAME, "filename", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Uses SAX 1 in the generated code.";
        allOptions.addFlag(ARGUMENT_SAX1, "", desc, true);

        //-- Source Generator Binding
        desc = "Sets the Source Generator Binding File name.";
        allOptions.addFlag(ARGUMENT_BINDING_FILENAME, "filename", desc, true);

        //-- Generates sources for imported XML Schemas
        desc = "Generates sources for imported XML schemas.";
        allOptions.addFlag(ARGUMENT_GENERATE_IMPORTED_SCHEMAS, "", desc, true);
View Full Code Here

Examples of org.exolab.castor.util.CommandLineOptions.addFlag()

        desc = "Sets the Source Generator Binding File name.";
        allOptions.addFlag(ARGUMENT_BINDING_FILENAME, "filename", desc, true);

        //-- Generates sources for imported XML Schemas
        desc = "Generates sources for imported XML schemas.";
        allOptions.addFlag(ARGUMENT_GENERATE_IMPORTED_SCHEMAS, "", desc, true);

        //-- Sets enumerated type to use a case insensitive lookup
        desc = "Sets enumerated types to use a case insensitive lookup.";
        allOptions.addFlag(ARGUMENT_CASE_INSENSITIVE, "", desc);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.