jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/SDDocumentImpl.java
changeset 19645 36f707905f2b
parent 16791 fe5141eabb0e
child 23782 953bfc3fbe31
equal deleted inserted replaced
19257:30a1d677a20c 19645:36f707905f2b
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    64     private static final String NS_XSD = "http://www.w3.org/2001/XMLSchema";
    64     private static final String NS_XSD = "http://www.w3.org/2001/XMLSchema";
    65     private static final QName SCHEMA_INCLUDE_QNAME = new QName(NS_XSD, "include");
    65     private static final QName SCHEMA_INCLUDE_QNAME = new QName(NS_XSD, "include");
    66     private static final QName SCHEMA_IMPORT_QNAME = new QName(NS_XSD, "import");
    66     private static final QName SCHEMA_IMPORT_QNAME = new QName(NS_XSD, "import");
    67     private static final QName SCHEMA_REDEFINE_QNAME = new QName(NS_XSD, "redefine");
    67     private static final QName SCHEMA_REDEFINE_QNAME = new QName(NS_XSD, "redefine");
    68     private static final String VERSION_COMMENT =
    68     private static final String VERSION_COMMENT =
    69         " Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is "+RuntimeVersion.VERSION+". ";
    69         " Published by JAX-WS RI (http://jax-ws.java.net). RI's version is "+RuntimeVersion.VERSION+". ";
    70 
    70 
    71     private final QName rootName;
    71     private final QName rootName;
    72     private final SDDocumentSource source;
    72     private final SDDocumentSource source;
    73 
    73 
    74     /**
    74     /**