Package org.exolab.castor.builder

Examples of org.exolab.castor.builder.TypeConversion


     */
    public EnumerationFactory(final BuilderConfiguration config,
            final GroupNaming groupNaming,
            final SourceGenerator sourceGenerator) {
        super(config, null, groupNaming, sourceGenerator);
        _typeConversion = new TypeConversion(getConfig());

        // TODO[WG]: add code to read in max. value from builder property file
        _maxEnumerationsPerClass = config.getMaximumNumberOfConstants();
    } //-- SourceFactory
View Full Code Here


        // set the config into the info factory (CASTOR-1346)
        infoFactory.setBoundProperties(config.boundPropertiesEnabled());

        this._memberFactory =
            new MemberFactory(config, infoFactory, getGroupNaming(), sourceGenerator);
        this._typeConversion = new TypeConversion(getConfig());
        this._enumerationFactory =
            new EnumerationFactory(getConfig(), getGroupNaming(), sourceGenerator);
    } //-- SourceFactory
View Full Code Here

        if (config == null) {
            String error = "The argument 'config' must not be null.";
            throw new IllegalArgumentException(error);
        }
        _config = config;
        _typeConversion = new TypeConversion(_config);
        setGroupNaming(groupNaming);
    } //-- XMLBindingComponent
View Full Code Here

        if (config == null) {
            String error = "The argument 'config' must not be null.";
            throw new IllegalArgumentException(error);
        }
        _config = config;
        _typeConversion = new TypeConversion(_config);
    } //-- XMLBindingComponent
View Full Code Here

TOP

Related Classes of org.exolab.castor.builder.TypeConversion

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.