< prev index next >

src/jdk.xml.bind/share/classes/com/sun/xml/internal/org/relaxng/datatype/helpers/DatatypeLibraryLoader.java

Print this page


   1 /**
   2  * Copyright (c) 2001, Thai Open Source Software Center Ltd
   3  * All rights reserved.
   4  *
   5  * Redistribution and use in source and binary forms, with or without
   6  * modification, are permitted provided that the following conditions are
   7  * met:
   8  *
   9  *     Redistributions of source code must retain the above copyright
  10  *     notice, this list of conditions and the following disclaimer.
  11  *
  12  *     Redistributions in binary form must reproduce the above copyright
  13  *     notice, this list of conditions and the following disclaimer in
  14  *     the documentation and/or other materials provided with the
  15  *     distribution.
  16  *
  17  *     Neither the name of the Thai Open Source Software Center Ltd nor
  18  *     the names of its contributors may be used to endorse or promote
  19  *     products derived from this software without specific prior written
  20  *     permission.
  21  *
  22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
  26  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  27  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33  */
  34 package org.relaxng.datatype.helpers;
  35 
  36 import org.relaxng.datatype.DatatypeLibraryFactory;
  37 import org.relaxng.datatype.DatatypeLibrary;
  38 import java.util.Enumeration;
  39 import java.util.NoSuchElementException;
  40 import java.util.Vector;
  41 import java.io.Reader;
  42 import java.io.InputStream;
  43 import java.io.InputStreamReader;
  44 import java.io.BufferedReader;
  45 import java.io.IOException;
  46 import java.io.UnsupportedEncodingException;
  47 import java.net.URL;
  48 
  49 /**
  50  * Discovers the datatype library implementation from the classpath.
  51  *
  52  * <p>
  53  * The call of the createDatatypeLibrary method finds an implementation
  54  * from a given datatype library URI at run-time.
  55  */
  56 public class DatatypeLibraryLoader implements DatatypeLibraryFactory {
  57   private final Service service = new Service(DatatypeLibraryFactory.class);


   1 /**
   2  * Copyright (c) 2001, 2015 Thai Open Source Software Center Ltd
   3  * All rights reserved.
   4  *
   5  * Redistribution and use in source and binary forms, with or without
   6  * modification, are permitted provided that the following conditions are
   7  * met:
   8  *
   9  *     Redistributions of source code must retain the above copyright
  10  *     notice, this list of conditions and the following disclaimer.
  11  *
  12  *     Redistributions in binary form must reproduce the above copyright
  13  *     notice, this list of conditions and the following disclaimer in
  14  *     the documentation and/or other materials provided with the
  15  *     distribution.
  16  *
  17  *     Neither the name of the Thai Open Source Software Center Ltd nor
  18  *     the names of its contributors may be used to endorse or promote
  19  *     products derived from this software without specific prior written
  20  *     permission.
  21  *
  22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
  26  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  27  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33  */
  34 package com.sun.xml.internal.org.relaxng.datatype.helpers;
  35 
  36 import com.sun.xml.internal.org.relaxng.datatype.DatatypeLibraryFactory;
  37 import com.sun.xml.internal.org.relaxng.datatype.DatatypeLibrary;
  38 import java.util.Enumeration;
  39 import java.util.NoSuchElementException;
  40 import java.util.Vector;
  41 import java.io.Reader;
  42 import java.io.InputStream;
  43 import java.io.InputStreamReader;
  44 import java.io.BufferedReader;
  45 import java.io.IOException;
  46 import java.io.UnsupportedEncodingException;
  47 import java.net.URL;
  48 
  49 /**
  50  * Discovers the datatype library implementation from the classpath.
  51  *
  52  * <p>
  53  * The call of the createDatatypeLibrary method finds an implementation
  54  * from a given datatype library URI at run-time.
  55  */
  56 public class DatatypeLibraryLoader implements DatatypeLibraryFactory {
  57   private final Service service = new Service(DatatypeLibraryFactory.class);


< prev index next >