Package org.exolab.castor.builder.binding.xml

Examples of org.exolab.castor.builder.binding.xml.Exclude


       
        ExtendedBinding binding = component.getBinding();
        if (binding != null) {
            // deal with explicit exclusions
            if (binding.existsExclusion(typedLocalName)) {
                Exclude exclusion = binding.getExclusion(typedLocalName);
                if (exclusion.getClassName() != null) {
                    LOG.info("Dealing with exclusion for local element " + xPath
                            + " as per binding file.");
                    jClass.changeLocalName(exclusion.getClassName());
                }
                return;
            }

            // deal with explicit forces
View Full Code Here


       
        Excludes excludesOuter = type.getExcludes();
        if (excludesOuter != null) {
            Exclude[] excludes = excludesOuter.getExclude();
            for (int i = 0; i < excludes.length; i++) {
                Exclude exclude = excludes[i];
                _automaticNameResolutionExcludes.put(exclude.getName(), exclude);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.exolab.castor.builder.binding.xml.Exclude

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.