Package com.sun.msv.datatype.xsd

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


    // getting desparate...
   
    if( dt instanceof XSDatatypeImpl ) {
      // if it contains EnumerationFacet, we can try that.
      XSDatatypeImpl dti = (XSDatatypeImpl)dt;
      EnumerationFacet e = (EnumerationFacet)dti.getFacetObject( XSDatatype.FACET_ENUMERATION );
      if(e!=null) {
        Object[] items = e.values.toArray();
        for( int i=0; i<10; i++ ) {
          try {
            return dti.convertToLexicalValue(items[random.nextInt(items.length)],context);
View Full Code Here

TOP

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

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.