Package org.jibx.schema.attributes

Examples of org.jibx.schema.attributes.FormChoiceAttribute


    public AttributeElement() {
      super(ATTRIBUTE_TYPE);
        m_inlineTypeList = new FilteredSegmentList(getChildrenWritable(),
            ELEMENT_MASKS[SIMPLETYPE_TYPE], this);
        m_defRef = new DefRefAttributeGroup(this);
        m_formChoice = new FormChoiceAttribute(this);
        m_useType = -1;
    }
View Full Code Here


        super(ELEMENT_TYPE);
        m_inlineTypeList = new FilteredSegmentList(getChildrenWritable(), INLINE_TYPE_MASK, this);
        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

TOP

Related Classes of org.jibx.schema.attributes.FormChoiceAttribute

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.