Examples of XSId


Examples of org.exolab.castor.builder.types.XSId

        // If we don't have the XSType yet, we have to look at the Type Code

        switch (base.getTypeCode()) {
            case SimpleTypesFactory.ID_TYPE:             //-- ID
                return new XSId();
            case SimpleTypesFactory.IDREF_TYPE:          //-- IDREF
                return new XSIdRef();
            case SimpleTypesFactory.IDREFS_TYPE:         //-- IDREFS
                return new XSIdRefs(SourceGeneratorConstants.FIELD_INFO_VECTOR, useJava50);
            case SimpleTypesFactory.NMTOKEN_TYPE:        //-- NMTOKEN
View Full Code Here

Examples of org.exolab.castor.builder.types.XSId

     * @param name the name of this identity
     * @param memberAndAccessorFactory the FieldMemberAndAccessorFactory to be used 
     */
    public IdentityInfo(final String name,
            final FieldMemberAndAccessorFactory memberAndAccessorFactory) {
        super(new XSId(), name, memberAndAccessorFactory);
        if (hasNature(XMLInfoNature.class.getName())) {
            XMLInfoNature xmlNature = new XMLInfoNature(this);
            xmlNature.setNodeType(NodeType.ATTRIBUTE);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.