Package com.sun.msv.datatype.xsd

Examples of com.sun.msv.datatype.xsd.MaxLengthFacet


      int n;  // compute # of items into this value.
   
      if(lf!=null) {
        n = lf.length;
      } else {
        MaxLengthFacet xlf = (MaxLengthFacet)dti.getFacetObject(XSDatatype.FACET_MAXLENGTH);
        int max = (xlf!=null)?xlf.maxLength:16;
        MinLengthFacet nlf = (MinLengthFacet)dti.getFacetObject(XSDatatype.FACET_MINLENGTH);
        int min = (nlf!=null)?nlf.minLength:0;
       
        n = random.nextInt(max-min)+min;
View Full Code Here

TOP

Related Classes of com.sun.msv.datatype.xsd.MaxLengthFacet

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.