Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.xml/share/classes/javax/xml/stream/events/EntityDeclaration.java
40955 views
1
/*
2
* Copyright (c) 2009, 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 javax.xml.stream.events;
27
/**
28
* An interface for handling Entity Declarations
29
*
30
* This interface is used to record and report unparsed entity declarations.
31
*
32
* @version 1.0
33
* @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved.
34
* @since 1.6
35
*/
36
public interface EntityDeclaration extends XMLEvent {
37
38
/**
39
* The entity's public identifier, or null if none was given
40
* @return the public ID for this declaration or null
41
*/
42
String getPublicId();
43
44
/**
45
* The entity's system identifier.
46
* @return the system ID for this declaration or null
47
*/
48
String getSystemId();
49
50
/**
51
* The entity's name
52
* @return the name, may not be null
53
*/
54
String getName();
55
56
/**
57
* The name of the associated notation.
58
* @return the notation name
59
*/
60
String getNotationName();
61
62
/**
63
* The replacement text of the entity.
64
* This method will only return non-null
65
* if this is an internal entity.
66
* @return null or the replacment text
67
*/
68
String getReplacementText();
69
70
/**
71
* Get the base URI for this reference
72
* or null if this information is not available
73
* @return the base URI or null
74
*/
75
String getBaseURI();
76
77
}
78
79