- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for documentBuilder (0.33 sec)
-
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
throw new ParserConfigurationRuntimeException(e); } return factory; } /** * 新しい {@link DocumentBuilder}を作成します。 * * @return 新しい {@link DocumentBuilder} */ public static DocumentBuilder newDocumentBuilder() { try { return newInstance().newDocumentBuilder(); } catch (final ParserConfigurationException e) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/XIncludeAwareXmlProvider.groovy
} } Document getDocument() { root } private Document parseSourceFile(File sourceFile) { documentBuilder().parse(sourceFile) } private DocumentBuilder documentBuilder() { DocumentBuilderFactory.newInstance().with { namespaceAware = true XIncludeAware = true newDocumentBuilder() } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
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 { /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy
* limitations under the License. */ package gradlebuild.docs import org.w3c.dom.* import org.xml.sax.InputSource import spock.lang.Specification import javax.xml.parsers.DocumentBuilder import javax.xml.parsers.DocumentBuilderFactory abstract class XmlSpecification extends Specification { final Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/xml/DomUtilTest.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.parsers.DocumentBuilder; import junit.framework.TestCase; import org.codelibs.core.io.ResourceUtil; import org.w3c.dom.Document; import org.w3c.dom.Element; /** * @author higa * */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
import java.util.HashSet; import java.util.LinkedHashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Set; import java.util.stream.Collectors; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; import javax.xml.XMLConstants; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.apache.commons.lang3.StringUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.io.CopyUtil;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0)