Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validation (0.14 sec)

  1. src/main/java/org/codelibs/core/xml/SchemaUtil.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.File;
    import java.net.URL;
    
    import javax.xml.transform.Source;
    import javax.xml.validation.Schema;
    import javax.xml.validation.SchemaFactory;
    
    import org.codelibs.core.exception.SAXRuntimeException;
    import org.xml.sax.SAXException;
    
    /**
     * {@link Schema}のためのユーティリティ・クラスです。
     *
     * @author koichik
     */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.xml;
    
    import javax.xml.XMLConstants;
    import javax.xml.validation.SchemaFactory;
    
    import org.codelibs.core.log.Logger;
    import org.xml.sax.SAXException;
    
    /**
     * {@link SchemaFactory}のためのユーティリティ・クラスです。
     *
     * @author koichik
     */
    public abstract class SchemaFactoryUtil {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
Back to top