Java Code Examples for com.sun.org.apache.xerces.internal.impl.Constants#NS_XMLSCHEMA

The following examples show how to use com.sun.org.apache.xerces.internal.impl.Constants#NS_XMLSCHEMA . 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: XMLDTDValidator.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 2
Source File: XMLDTDValidator.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 3
Source File: XMLDTDValidator.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 4
Source File: XMLDTDValidator.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 5
Source File: XMLDTDValidator.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 6
Source File: XMLDTDValidator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 7
Source File: XMLDTDValidator.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 8
Source File: XMLDTDValidator.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 9
Source File: XMLDTDValidator.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 10
Source File: XMLDTDValidator.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}
 
Example 11
Source File: XMLDTDValidator.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public final boolean validate(){
    // Do validation if all of the following are true:
    // 1. The JAXP Schema Language property is not XML Schema
    //    REVISIT: since only DTD and Schema are supported at this time,
    //             such checking is sufficient. but if more schema types
    //             are introduced in the future, we'll need to change it
    //             to something like
    //             (fSchemaType == null || fSchemaType == NS_XML_DTD)
    // 2. One of the following is true (validation features)
    // 2.1 Dynamic validation is off, and validation is on
    // 2.2 Dynamic validation is on, and DOCTYPE was seen
    // 3 Xerces schema validation feature is off, or DOCTYPE was seen.
    return (fSchemaType != Constants.NS_XMLSCHEMA) &&
           (!fDynamicValidation && fValidation ||
            fDynamicValidation && fSeenDoctypeDecl) &&
           (fDTDValidation || fSeenDoctypeDecl);
}