com.sun.org.apache.xerces.internal.impl.dv.XSFacets Java Examples

The following examples show how to use com.sun.org.apache.xerces.internal.impl.dv.XSFacets. 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: XSSimpleTypeDecl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #2
Source File: XSSimpleTypeDecl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #3
Source File: XSSimpleTypeDecl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #4
Source File: XSSimpleTypeDecl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #5
Source File: XSSimpleTypeDecl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #6
Source File: XSSimpleTypeDecl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #7
Source File: XSSimpleTypeDecl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #8
Source File: XSSimpleTypeDecl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #9
Source File: XSSimpleTypeDecl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #10
Source File: XSSimpleTypeDecl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #11
Source File: XSSimpleTypeDecl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #12
Source File: XSSimpleTypeDecl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #13
Source File: XSSimpleTypeDecl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #14
Source File: XSSimpleTypeDecl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #15
Source File: XSSimpleTypeDecl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #16
Source File: XSSimpleTypeDecl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #17
Source File: XSSimpleTypeDecl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #18
Source File: XSSimpleTypeDecl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #19
Source File: XSSimpleTypeDecl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #20
Source File: XSSimpleTypeDecl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #21
Source File: XSSimpleTypeDecl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #22
Source File: XSSimpleTypeDecl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #23
Source File: XSSimpleTypeDecl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #24
Source File: XSSimpleTypeDecl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #25
Source File: XSSimpleTypeDecl.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #26
Source File: XSSimpleTypeDecl.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #27
Source File: XSSimpleTypeDecl.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #28
Source File: XSSimpleTypeDecl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * If <restriction> is chosen
 */
public void applyFacets(XSFacets facets, short presentFacet, short fixedFacet, ValidationContext context)
throws InvalidDatatypeFacetException {
    if (context == null) {
        context = fEmptyContext;
    }
    applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, context);
}
 
Example #29
Source File: XSSimpleTypeDecl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, SPECIAL_PATTERN_NONE, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}
 
Example #30
Source File: XSSimpleTypeDecl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * built-in derived types by restriction
 */
void applyFacets1(XSFacets facets, short presentFacet, short fixedFacet, short patternType) {

    try {
        applyFacets(facets, presentFacet, fixedFacet, patternType, fDummyContext);
    } catch (InvalidDatatypeFacetException e) {
        // should never gets here, internel error
        throw new RuntimeException("internal error");
    }
    // we've now applied facets; so lock this object:
    fIsImmutable = true;
}