com.sun.org.apache.xerces.internal.impl.dv.DatatypeValidator

Here are the examples of the java api class com.sun.org.apache.xerces.internal.impl.dv.DatatypeValidator taken from open source projects.

1. DTDGrammar#resize()

Project: openjdk
File: DTDGrammar.java
private static DatatypeValidator[][] resize(DatatypeValidator array[][], int newsize) {
    DatatypeValidator newarray[][] = new DatatypeValidator[newsize][];
    System.arraycopy(array, 0, newarray, 0, array.length);
    return newarray;
}