com.sun.org.apache.xerces.internal.impl.dtd.models.ContentModelValidator Java Examples
The following examples show how to use
com.sun.org.apache.xerces.internal.impl.dtd.models.ContentModelValidator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DTDGrammar.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #2
Source File: DTDGrammar.java From Bytecoder with Apache License 2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #3
Source File: DTDGrammar.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #4
Source File: DTDGrammar.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #5
Source File: DTDGrammar.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #6
Source File: DTDGrammar.java From hottub with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #7
Source File: DTDGrammar.java From JDKSourceCode1.8 with MIT License | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #8
Source File: DTDGrammar.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #9
Source File: DTDGrammar.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #10
Source File: DTDGrammar.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #11
Source File: DTDGrammar.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
private void ensureElementDeclCapacity(int chunk) { if (chunk >= fElementDeclName.length) { fElementDeclIsExternal = resize(fElementDeclIsExternal, fElementDeclIsExternal.length * 2); fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2); fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2); fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2); fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2); fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2); fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2); } else if (fElementDeclName[chunk] != null) { return; } fElementDeclIsExternal[chunk] = new int[CHUNK_SIZE]; fElementDeclName[chunk] = new QName[CHUNK_SIZE]; fElementDeclType[chunk] = new short[CHUNK_SIZE]; fElementDeclContentModelValidator[chunk] = new ContentModelValidator[CHUNK_SIZE]; fElementDeclContentSpecIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclFirstAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; fElementDeclLastAttributeDeclIndex[chunk] = new int[CHUNK_SIZE]; return; }
Example #12
Source File: DTDGrammar.java From hottub with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #13
Source File: DTDGrammar.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #14
Source File: DTDGrammar.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #15
Source File: DTDGrammar.java From Bytecoder with Apache License 2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #16
Source File: DTDGrammar.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #17
Source File: DTDGrammar.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #18
Source File: DTDGrammar.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #19
Source File: DTDGrammar.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #20
Source File: DTDGrammar.java From JDKSourceCode1.8 with MIT License | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #21
Source File: DTDGrammar.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #22
Source File: DTDGrammar.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { ContentModelValidator newarray[][] = new ContentModelValidator[newsize][]; System.arraycopy(array, 0, newarray, 0, array.length); return newarray; }
Example #23
Source File: XMLElementDecl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #24
Source File: XMLElementDecl.java From openjdk-jdk8u with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #25
Source File: XMLElementDecl.java From Bytecoder with Apache License 2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #26
Source File: XMLElementDecl.java From JDKSourceCode1.8 with MIT License | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #27
Source File: XMLElementDecl.java From openjdk-jdk9 with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #28
Source File: XMLElementDecl.java From jdk8u60 with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #29
Source File: XMLElementDecl.java From hottub with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }
Example #30
Source File: XMLElementDecl.java From TencentKona-8 with GNU General Public License v2.0 | 3 votes |
/** * setValues * * @param name * @param scope * @param type * @param contentModelValidator * @param simpleType */ public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { this.name.setValues(name); this.scope = scope; this.type = type; this.contentModelValidator = contentModelValidator; this.simpleType.setValues(simpleType); }