Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for helper (0.21 sec)

  1. pom.xml

    				<version>4.3</version>
    				<configuration>
    					<header>https://www.codelibs.org/assets/license/header.txt</header>
    					<properties>
    						<year>2024</year>
    					</properties>
    					<includes>
    						<include>src/**/*.java</include>
    					</includes>
    					<encoding>UTF-8</encoding>
    					<headerDefinitions>
    						<headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition>
    XML
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/SAXParserUtil.java

    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.exception.SAXRuntimeException;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.XMLReader;
    import org.xml.sax.helpers.DefaultHandler;
    
    /**
     * {@link SAXParser}用のユーティリティ・クラスです。
     *
     * @author higa
     */
    public abstract class SAXParserUtil {
    
        /**
         * 指定された{@link InputSource}のコンテンツを、指定された{@link DefaultHandler}
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java

    import junit.framework.TestCase;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.xml.sax.Attributes;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.DefaultHandler;
    
    /**
     * {@link SAXParserFactoryUtil}のテストです。
     *
     * @author koichik
     */
    public class SAXParserFactoryUtilTest extends TestCase {
    
        boolean included;
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.4K bytes
    - Viewed (0)
Back to top