Package org.jibx.binding.util

Examples of org.jibx.binding.util.ObjectStack


    /**
     * Constructor.
     */
    public SchemaContextTracker() {
        m_traversedSchemas = new HashSet();
        m_schemaStack = new ObjectStack();
    }
View Full Code Here


    /**
     * Default constructor. This just initializes all options disabled.
     */
    public BindingGenerator() {
        m_mappedNames = new HashMap();
        m_structureStack = new ObjectStack();
        m_structureNames = new HashSet();
        m_ignoreNames = new HashSet();
    }
View Full Code Here

         * Constructor.
         *
         * @param root customization for root element being processed
         */
        public FacetRemoverVisitor(SchemaCustom root) {
            m_customStack = new ObjectStack();
            m_currentCustom = root;
        }
View Full Code Here

     * Constructor.
     *
     * @param iloc class locator to be used
     */
    public TreeContext(IClassLocator iloc) {
        m_treeHierarchy = new ObjectStack();
        m_locator = iloc;
        m_skipSet = new HashSet();
    }
View Full Code Here

        TreeContext child = new TreeContext();
        child.m_bindingRoot = m_bindingRoot;
        child.m_globalContext = m_globalContext;
        child.m_locator = m_locator;
        child.m_skipSet = m_skipSet;
        child.m_treeHierarchy = new ObjectStack(m_treeHierarchy);
        return child;
    }
View Full Code Here

     * options disabled.
     *
     * @param paths class paths to be checked for classes referenced by bindings
     */
    public SchemaGenerator(ArrayList paths) {
        m_structureStack = new ObjectStack();
        m_schemaMap = new HashMap();
       
        // set paths to be used for loading referenced classes
        String[] parray = (String[])paths.toArray(new String[paths.size()]);
        ClassCache.setPaths(parray);
View Full Code Here

TOP

Related Classes of org.jibx.binding.util.ObjectStack

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.