Package org.jibx.schema.types

Examples of org.jibx.schema.types.AllEnumSet


            CONTENT_DEFINITION_MASK, m_contentTypeList, this);
        m_attributeList = new FilteredSegmentList(getChildrenWritable(),
            ATTRIBUTE_MASK, m_contentDefinitionList, this);
        m_anyAttributeList = new FilteredSegmentList(getChildrenWritable(),
            ANYATTRIBUTE_MASK, m_attributeList, this);
        m_block = new AllEnumSet(ElementElement.s_derivationValues,
            "block");
        m_final = new AllEnumSet(ElementElement.s_derivationValues,
            "final");
    }
View Full Code Here


     */
    public SimpleTypeElement() {
        super(SIMPLETYPE_TYPE);
        m_contentDerivationList = new FilteredSegmentList(getChildrenWritable(),
            CONTENT_DERIVATION_MASK, this);
        m_final = new AllEnumSet(s_simpleDerivationValues, "final");
    }
View Full Code Here

        m_identityConstraintList = new FilteredSegmentList(getChildrenWritable(), IDENTITY_CONSTRAINT_MASK,
            m_inlineTypeList, this);
        m_defRef = new DefRefAttributeGroup(this);
        m_formChoice = new FormChoiceAttribute(this);
        m_occurs = new OccursAttributeGroup(this);
        m_block = new AllEnumSet(s_blockValues, "block");
        m_final = new AllEnumSet(s_derivationValues, "final");
    }
View Full Code Here

        m_schemaChildren = new FilteredSegmentList(getChildrenWritable(),
            SCHEMA_REFERENCE_MASK, this);
        m_topLevelChildren = new FilteredSegmentList(getChildrenWritable(),
            TOP_LEVEL_DEFINITION_MASK, m_schemaChildren, this);
        m_dependentSchemas = new LazyList();
        m_blockDefault = new AllEnumSet(ElementElement.s_blockValues,
            "blockDefault");
        m_finalDefault = new AllEnumSet(ElementElement.s_derivationValues,
            "finalDefault");
        m_register = new NameRegister();
        m_attributeFormDefaultType = -1;
        m_elementFormDefaultType = -1;
    }
View Full Code Here

TOP

Related Classes of org.jibx.schema.types.AllEnumSet

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.