Package org.apache.xerces.impl.xs.util

Examples of org.apache.xerces.impl.xs.util.ShortListImpl


 
  public ShortList getEnumerationTypeList() {
    if (fEnumerationTypeList == null) {
            if (fEnumerationType == null)
                return null;
            fEnumerationTypeList = new ShortListImpl (fEnumerationType, fEnumerationType.length);
    }
    return fEnumerationTypeList;
  }
View Full Code Here


                        arr[j] = itemValueType.item(j);
                    }
                    for(; i < length; ++i) {
                        arr[i] = convertToPrimitiveKind(itemValueType.item(i));
                    }
                    return new ShortListImpl(arr, arr.length);
                }
            }
            return itemValueType;
        }
View Full Code Here

            ListDV.ListData v = new ListDV.ListData(avalue);
            validatedInfo.actualValue = v;
            validatedInfo.actualValueType = isUnion ? XSConstants.LISTOFUNION_DT : XSConstants.LIST_DT;
            validatedInfo.memberType = null;
            validatedInfo.memberTypes = memberTypes;
            validatedInfo.itemValueTypes = new ShortListImpl(itemTypes, itemTypes.length);
            validatedInfo.normalizedValue = nvalue;

            return v;

        } else { // (fVariety == VARIETY_UNION)
View Full Code Here

          while (i < j)
          {
            arrayOfShort[i] = convertToPrimitiveKind(paramShortList.item(i));
            i++;
          }
          return new ShortListImpl(arrayOfShort, arrayOfShort.length);
        }
      }
      return paramShortList;
    }
View Full Code Here

      ListDV.ListData localListData = new ListDV.ListData(localObject3);
      paramValidatedInfo.actualValue = localListData;
      paramValidatedInfo.actualValueType = (m != 0 ? 43 : 44);
      paramValidatedInfo.memberType = null;
      paramValidatedInfo.memberTypes = arrayOfXSSimpleTypeDecl;
      paramValidatedInfo.itemValueTypes = new ShortListImpl(localObject4, localObject4.length);
      paramValidatedInfo.normalizedValue = str;
      return localListData;
    }
    int j = 0;
    while (j < this.fMemberTypes.length)
View Full Code Here

  {
    if (this.fEnumerationTypeList == null)
    {
      if (this.fEnumerationType == null)
        return ShortListImpl.EMPTY_LIST;
      this.fEnumerationTypeList = new ShortListImpl(this.fEnumerationType, this.fEnumerationType.length);
    }
    return this.fEnumerationTypeList;
  }
View Full Code Here

            ListDV.ListData v = new ListDV.ListData(avalue);
            validatedInfo.actualValue = v;
            validatedInfo.actualValueType = isUnion ? XSConstants.LISTOFUNION_DT : XSConstants.LIST_DT;
            validatedInfo.memberType = null;
            validatedInfo.memberTypes = memberTypes;
            validatedInfo.itemValueTypes = new ShortListImpl(itemTypes, itemTypes.length);
            validatedInfo.normalizedValue = nvalue;

            return v;

        } else { // (fVariety == VARIETY_UNION)
View Full Code Here

    public ShortList getEnumerationTypeList() {
        if (fEnumerationTypeList == null) {
            if (fEnumerationType == null) {
                return ShortListImpl.EMPTY_LIST;
            }
            fEnumerationTypeList = new ShortListImpl (fEnumerationType, fEnumerationType.length);
        }
        return fEnumerationTypeList;
    }
View Full Code Here

TOP

Related Classes of org.apache.xerces.impl.xs.util.ShortListImpl

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.