Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jaxp/src/com/sun/xml/internal/stream/events/NotationDeclarationImpl.java
86414 views
1
/*
2
* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package com.sun.xml.internal.stream.events;
27
28
import javax.xml.stream.events.NotationDeclaration;
29
import javax.xml.stream.events.XMLEvent;
30
import com.sun.xml.internal.stream.dtd.nonvalidating.XMLNotationDecl;
31
32
/**
33
* Implementation of NotationDeclaration event.
34
*
35
* @author [email protected]
36
*/
37
public class NotationDeclarationImpl extends DummyEvent implements NotationDeclaration {
38
39
String fName = null;
40
String fPublicId = null;
41
String fSystemId = null;
42
43
/** Creates a new instance of NotationDeclarationImpl */
44
public NotationDeclarationImpl() {
45
setEventType(XMLEvent.NOTATION_DECLARATION);
46
}
47
48
public NotationDeclarationImpl(String name,String publicId,String systemId){
49
this.fName = name;
50
this.fPublicId = publicId;
51
this.fSystemId = systemId;
52
setEventType(XMLEvent.NOTATION_DECLARATION);
53
}
54
55
public NotationDeclarationImpl(XMLNotationDecl notation){
56
this.fName = notation.name;
57
this.fPublicId = notation.publicId;
58
this.fSystemId = notation.systemId;
59
setEventType(XMLEvent.NOTATION_DECLARATION);
60
}
61
62
public String getName() {
63
return fName;
64
}
65
66
public String getPublicId() {
67
return fPublicId;
68
}
69
70
public String getSystemId() {
71
return fSystemId;
72
}
73
74
void setPublicId(String publicId){
75
this.fPublicId = publicId;
76
}
77
78
void setSystemId(String systemId){
79
this.fSystemId = systemId;
80
}
81
82
void setName(String name){
83
this.fName = name;
84
}
85
86
protected void writeAsEncodedUnicodeEx(java.io.Writer writer)
87
throws java.io.IOException
88
{
89
writer.write("<!NOTATION ");
90
writer.write(getName());
91
if (fPublicId != null) {
92
writer.write(" PUBLIC \"");
93
writer.write(fPublicId);
94
writer.write("\"");
95
} else if (fSystemId != null) {
96
writer.write(" SYSTEM");
97
writer.write(" \"");
98
writer.write(fSystemId);
99
writer.write("\"");
100
}
101
writer.write('>');
102
}
103
}
104
105