Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dom (0.13 sec)

  1. src/test/java/org/codelibs/core/xml/DomUtilTest.java

     */
    package org.codelibs.core.xml;
    
    import javax.xml.parsers.DocumentBuilder;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    /**
     * @author higa
     *
     */
    public class DomUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testGetContentsAsStream() throws Exception {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/DocumentBuilderUtil.java

    import java.io.IOException;
    import java.io.InputStream;
    
    import javax.xml.parsers.DocumentBuilder;
    
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.exception.SAXRuntimeException;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    
    /**
     * {@link DocumentBuilder}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class DocumentBuilderUtil {
    
        /**
         * XMLを解析します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/xml/DomUtil.java

    import org.codelibs.core.exception.IORuntimeException;
    import org.w3c.dom.Attr;
    import org.w3c.dom.CDATASection;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.EntityReference;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Text;
    
    /**
     * DOM用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class DomUtil {
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top