Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2005-04-05 06:07:16 +0000
committerdavid_williams2005-04-05 06:07:16 +0000
commitc39caafc75f72b202e220ec0f6bb0b86ab5a68af (patch)
tree972493b4dfb01867a310a506051f61ee35c9f14f /bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java
parent6a8e389476242714f2b71632f8c0e5998782818b (diff)
downloadwebtools.sourceediting-c39caafc75f72b202e220ec0f6bb0b86ab5a68af.tar.gz
webtools.sourceediting-c39caafc75f72b202e220ec0f6bb0b86ab5a68af.tar.xz
webtools.sourceediting-c39caafc75f72b202e220ec0f6bb0b86ab5a68af.zip
many changes from "XML" form of name to "DOM" form of name
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java
index f6e9e66d30..b48a7ec029 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/document/DocumentStyleImpl.java
@@ -18,8 +18,8 @@ package org.eclipse.wst.html.core.document;
import org.eclipse.wst.css.core.adapters.IStyleSheetListAdapter;
import org.eclipse.wst.sse.core.INodeAdapter;
-import org.eclipse.wst.xml.core.document.DOMDocument;
-import org.eclipse.wst.xml.core.document.DOMModel;
+import org.eclipse.wst.xml.core.document.IDOMDocument;
+import org.eclipse.wst.xml.core.document.IDOMModel;
import org.eclipse.wst.xml.core.internal.document.DocumentImpl;
import org.w3c.dom.DOMException;
import org.w3c.dom.Element;
@@ -34,7 +34,7 @@ import org.w3c.dom.stylesheets.StyleSheetList;
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
-public class DocumentStyleImpl extends DocumentImpl implements DOMDocument, DocumentCSS {
+public class DocumentStyleImpl extends DocumentImpl implements IDOMDocument, DocumentCSS {
public DocumentStyleImpl() {
super();
}
@@ -90,7 +90,7 @@ public class DocumentStyleImpl extends DocumentImpl implements DOMDocument, Docu
return cloned;
}
- protected void setModel(DOMModel model) {
+ protected void setModel(IDOMModel model) {
super.setModel(model);
}
} \ No newline at end of file

Back to the top