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:
Java Source Code for Xerces Java 2.11.2
Where Can I see Java Source Code files for Xerces Java 2.11.2?
✍: FYIcenter
Here are Java Source Code files for Xerces Java 2.11.2:
⏎ org/apache/xerces/stax/XMLEventFactoryImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.xerces.stax; import java.util.Iterator; import javax.xml.XMLConstants; import javax.xml.namespace.NamespaceContext; import javax.xml.namespace.QName; import javax.xml.stream.Location; import javax.xml.stream.XMLEventFactory; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.events.Attribute; import javax.xml.stream.events.Characters; import javax.xml.stream.events.Comment; import javax.xml.stream.events.DTD; import javax.xml.stream.events.EndDocument; import javax.xml.stream.events.EndElement; import javax.xml.stream.events.EntityDeclaration; import javax.xml.stream.events.EntityReference; import javax.xml.stream.events.Namespace; import javax.xml.stream.events.ProcessingInstruction; import javax.xml.stream.events.StartDocument; import javax.xml.stream.events.StartElement; import org.apache.xerces.stax.events.AttributeImpl; import org.apache.xerces.stax.events.CharactersImpl; import org.apache.xerces.stax.events.CommentImpl; import org.apache.xerces.stax.events.DTDImpl; import org.apache.xerces.stax.events.EndDocumentImpl; import org.apache.xerces.stax.events.EndElementImpl; import org.apache.xerces.stax.events.EntityReferenceImpl; import org.apache.xerces.stax.events.NamespaceImpl; import org.apache.xerces.stax.events.ProcessingInstructionImpl; import org.apache.xerces.stax.events.StartDocumentImpl; import org.apache.xerces.stax.events.StartElementImpl; /** * <p>Implementation of XMLEventFactory.</p> * * @xerces.internal * * @version $Id: XMLEventFactoryImpl.java 730796 2009-01-02 17:36:23Z mrglavas $ */ public final class XMLEventFactoryImpl extends XMLEventFactory { private Location fLocation; public XMLEventFactoryImpl() {} public void setLocation(Location location) { fLocation = location; } public Attribute createAttribute(String prefix, String namespaceURI, String localName, String value) { return createAttribute(new QName(namespaceURI, localName, prefix), value); } public Attribute createAttribute(String localName, String value) { return createAttribute(new QName(localName), value); } public Attribute createAttribute(QName name, String value) { return new AttributeImpl(name, value, "CDATA", true, fLocation); } public Namespace createNamespace(String namespaceURI) { return createNamespace(XMLConstants.DEFAULT_NS_PREFIX, namespaceURI); } public Namespace createNamespace(String prefix, String namespaceUri) { return new NamespaceImpl(prefix, namespaceUri, fLocation); } public StartElement createStartElement(QName name, Iterator attributes, Iterator namespaces) { return createStartElement(name, attributes, namespaces, null); } public StartElement createStartElement(String prefix, String namespaceUri, String localName) { return createStartElement(new QName(namespaceUri, localName, prefix), null, null); } public StartElement createStartElement(String prefix, String namespaceUri, String localName, Iterator attributes, Iterator namespaces) { return createStartElement(new QName(namespaceUri, localName, prefix), attributes, namespaces); } public StartElement createStartElement(String prefix, String namespaceUri, String localName, Iterator attributes, Iterator namespaces, NamespaceContext context) { return createStartElement(new QName(namespaceUri, localName, prefix), attributes, namespaces, context); } private StartElement createStartElement(QName name, Iterator attributes, Iterator namespaces, NamespaceContext context) { return new StartElementImpl(name, attributes, namespaces, context, fLocation); } public EndElement createEndElement(QName name, Iterator namespaces) { return new EndElementImpl(name, namespaces, fLocation); } public EndElement createEndElement(String prefix, String namespaceUri, String localName) { return createEndElement(new QName(namespaceUri, localName, prefix), null); } public EndElement createEndElement(String prefix, String namespaceUri, String localName, Iterator namespaces) { return createEndElement(new QName(namespaceUri, localName, prefix), namespaces); } public Characters createCharacters(String content) { return new CharactersImpl(content, XMLStreamConstants.CHARACTERS, fLocation); } public Characters createCData(String content) { return new CharactersImpl(content, XMLStreamConstants.CDATA, fLocation); } public Characters createSpace(String content) { return createCharacters(content); } public Characters createIgnorableSpace(String content) { return new CharactersImpl(content, XMLStreamConstants.SPACE, fLocation); } public StartDocument createStartDocument() { return createStartDocument(null, null); } public StartDocument createStartDocument(String encoding, String version, boolean standalone) { return new StartDocumentImpl(encoding, encoding != null, standalone, true, version, fLocation); } public StartDocument createStartDocument(String encoding, String version) { return new StartDocumentImpl(encoding, encoding != null, false, false, version, fLocation); } public StartDocument createStartDocument(String encoding) { return createStartDocument(encoding, null); } public EndDocument createEndDocument() { return new EndDocumentImpl(fLocation); } public EntityReference createEntityReference(String name, EntityDeclaration declaration) { return new EntityReferenceImpl(name, declaration, fLocation); } public Comment createComment(String text) { return new CommentImpl(text, fLocation); } public ProcessingInstruction createProcessingInstruction(String target, String data) { return new ProcessingInstructionImpl(target, data, fLocation); } public DTD createDTD(String dtd) { return new DTDImpl(dtd, fLocation); } }
⏎ org/apache/xerces/stax/XMLEventFactoryImpl.java
Or download all of them as a single archive file:
File name: Xerces-J.2.12.2-src.zip File size: 2128351 bytes Release date: 2022-01-21 Download
⇒ Donwload Xerces-J-bin.2.11.0.zip
⇐ What Is in Xerces-J-bin.2.12.2.zip
2016-09-15, 23918👍, 1💬
Popular Posts:
JDK 11 jdk.internal.opt.jmod is the JMOD file for JDK 11 Internal Opt module. JDK 11 Internal Opt mo...
How to download and install xml-commons External Source Package? The source package contains Java so...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...