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, 15485👍, 0💬
Popular Posts:
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
What is ojdbc.jar - JDBC Driver for Oracle? ojdbc.jar is a JDBC driver from Oracle that provides dat...