Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2005-04-14 14:05:08 +0000
committerdavid_williams2005-04-14 14:05:08 +0000
commit838590bc055f3e6b2047a134b0dd3cc1ee81c398 (patch)
tree58fb891d2a696fcc5d018ef514f7ff9f51fd2045 /bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java
parent6e7aad0e3c63c0c1d8569b4713daab175809232f (diff)
downloadwebtools.sourceediting-838590bc055f3e6b2047a134b0dd3cc1ee81c398.tar.gz
webtools.sourceediting-838590bc055f3e6b2047a134b0dd3cc1ee81c398.tar.xz
webtools.sourceediting-838590bc055f3e6b2047a134b0dd3cc1ee81c398.zip
changes to co-exist with xerces and various DOM levels
Diffstat (limited to 'bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java')
-rw-r--r--bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java
index 80e5d6fdbd..254faa8bf2 100644
--- a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java
+++ b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/document/EntityImpl.java
@@ -224,4 +224,18 @@ public class EntityImpl extends NodeImpl implements Entity {
*/
public void setVersion(java.lang.String version) {
}
+
+ public String getInputEncoding() {
+ throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not implemented in this version");
+ }
+
+ public String getXmlEncoding() {
+ throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not implemented in this version");
+ }
+
+
+ public String getXmlVersion() {
+ throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not implemented in this version");
+ }
+
}

Back to the top