Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2005-04-10 18:21:21 +0000
committerdavid_williams2005-04-10 18:21:21 +0000
commit285ee2d81bb21d4c59808d9e145cdcc9bffe130f (patch)
treec4e33d92b47bf7898b39e6caee3a0cd4f30018f2 /bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss
parent2f91b8ddb3138d75b60819b3cc87237eb7721f00 (diff)
downloadwebtools.sourceediting-285ee2d81bb21d4c59808d9e145cdcc9bffe130f.tar.gz
webtools.sourceediting-285ee2d81bb21d4c59808d9e145cdcc9bffe130f.tar.xz
webtools.sourceediting-285ee2d81bb21d4c59808d9e145cdcc9bffe130f.zip
java doc in internalization
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/HTMLStyleSelectorAdapterFactory.java6
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/StyleAdapterFactory.java6
2 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/HTMLStyleSelectorAdapterFactory.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/HTMLStyleSelectorAdapterFactory.java
index bd4b302b36..87f97e8fb6 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/HTMLStyleSelectorAdapterFactory.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/HTMLStyleSelectorAdapterFactory.java
@@ -13,14 +13,14 @@ package org.eclipse.wst.html.core.htmlcss;
import org.eclipse.wst.css.core.internal.provisional.adapters.IStyleSelectorAdapter;
-import org.eclipse.wst.sse.core.IAdapterFactory;
+import org.eclipse.wst.sse.core.INodeAdapterFactory;
import org.eclipse.wst.sse.core.INodeAdapter;
import org.eclipse.wst.sse.core.INodeNotifier;
/**
* Insert the type's description here.
*/
-public class HTMLStyleSelectorAdapterFactory implements IAdapterFactory {
+public class HTMLStyleSelectorAdapterFactory implements INodeAdapterFactory {
private static HTMLStyleSelectorAdapterFactory instance;
private Object toMatch = IStyleSelectorAdapter.class;
@@ -74,7 +74,7 @@ public class HTMLStyleSelectorAdapterFactory implements IAdapterFactory {
/**
* Overriding copy method
*/
- public IAdapterFactory copy() {
+ public INodeAdapterFactory copy() {
return getInstance();
}
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/StyleAdapterFactory.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/StyleAdapterFactory.java
index 1f59ce91b2..d9fc68e5d5 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/StyleAdapterFactory.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/htmlcss/StyleAdapterFactory.java
@@ -16,7 +16,7 @@ import org.eclipse.wst.css.core.internal.provisional.adapters.IStyleDeclarationA
import org.eclipse.wst.css.core.internal.provisional.adapters.IStyleSheetAdapter;
import org.eclipse.wst.css.core.internal.provisional.adapters.IStyleSheetListAdapter;
import org.eclipse.wst.html.core.HTML40Namespace;
-import org.eclipse.wst.sse.core.IAdapterFactory;
+import org.eclipse.wst.sse.core.INodeAdapterFactory;
import org.eclipse.wst.sse.core.INodeAdapter;
import org.eclipse.wst.sse.core.INodeNotifier;
import org.eclipse.wst.xml.core.internal.contentmodel.CMAttributeDeclaration;
@@ -31,7 +31,7 @@ import org.w3c.dom.Node;
/**
*/
-public class StyleAdapterFactory implements IAdapterFactory {
+public class StyleAdapterFactory implements INodeAdapterFactory {
private static StyleAdapterFactory instance = null;
@@ -155,7 +155,7 @@ public class StyleAdapterFactory implements IAdapterFactory {
/**
* Overriding Object's clone() method
*/
- public IAdapterFactory copy() {
+ public INodeAdapterFactory copy() {
return getInstance();
}

Back to the top