Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Woodstox 6.4.0 - Source Code Files
Woodstox 6.4.0 Source Code Files are provided at the Woodstox GitHub Website.
You can download them from the "src/main/java" folder.
You can also browse Woodstox Source Code files below:
✍: FYIcenter
⏎ com/ctc/wstx/evt/WDTD.java
package com.ctc.wstx.evt; import java.util.ArrayList; import java.util.List; import javax.xml.stream.Location; import javax.xml.stream.events.EntityDeclaration; import javax.xml.stream.events.NotationDeclaration; import org.codehaus.stax2.ri.evt.DTDEventImpl; import com.ctc.wstx.dtd.DTDSubset; /** * Event that contains all StAX accessible information read from internal * and external DTD subsets. */ public class WDTD extends DTDEventImpl { /** * Internal DTD Object that contains combined information from internal * and external subsets. */ final DTDSubset mSubset; /* ///////////////////////////////////////////////////// // Lazily constructed objects ///////////////////////////////////////////////////// */ List<EntityDeclaration> mEntities = null; List<NotationDeclaration> mNotations = null; /* ///////////////////////////////////////////////////// // Constuctors ///////////////////////////////////////////////////// */ public WDTD(Location loc, String rootName, String sysId, String pubId, String intSubset, DTDSubset dtdSubset) { super(loc, rootName, sysId, pubId, intSubset, dtdSubset); mSubset = dtdSubset; } public WDTD(Location loc, String rootName, String sysId, String pubId, String intSubset) { this(loc, rootName, sysId, pubId, intSubset, null); } /** * Constructor used when only partial information is available... */ public WDTD(Location loc, String rootName, String intSubset) { this(loc, rootName, null, null, intSubset, null); } public WDTD(Location loc, String fullText) { super(loc, fullText); mSubset = null; } /* ///////////////////////////////////////////////////// // Accessors ///////////////////////////////////////////////////// */ @Override public List<EntityDeclaration> getEntities() { if (mEntities == null && (mSubset != null)) { /* Better make a copy, so that caller can not modify list * DTD has, which may be shared (since DTD subset instances * are cached and reused) */ mEntities = new ArrayList<EntityDeclaration>(mSubset.getGeneralEntityList()); } return mEntities; } @Override public List<NotationDeclaration> getNotations() { if (mNotations == null && (mSubset != null)) { mNotations = new ArrayList<NotationDeclaration>(mSubset.getNotationList()); } return mNotations; } }
⏎ com/ctc/wstx/evt/WDTD.java
Or download all of them as a single archive file:
File name: woodstox-core-6.4.0-fyi.zip File size: 552992 bytes Release date: 2022-10-25 Download
⇒ woodstox-core-6.4.0.jar - Woodstox Core 6.4.0
⇐ What Is Woodstox XML Processing
2023-01-29, 3349👍, 0💬
Popular Posts:
What Is ojdbc7.jar for Oracle 12c R1? ojdbc7.jar for Oracle 12c R1 is the JAR files of ojdbc.jar, JD...
layout.jar is a component in iText Java library to provide layout functionalities. iText Java librar...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....