Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2005-03-18 07:20:23 +0000
committerdavid_williams2005-03-18 07:20:23 +0000
commit95990efbc5478ec6123ecd9ca473aa34489b1678 (patch)
treeca162ccb820e56fe7b8ecdaf602e2bea61d77940 /bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java
parent75dccf31a38c8e39dff45e9eaa953bcb926882c2 (diff)
downloadwebtools.sourceediting-95990efbc5478ec6123ecd9ca473aa34489b1678.tar.gz
webtools.sourceediting-95990efbc5478ec6123ecd9ca473aa34489b1678.tar.xz
webtools.sourceediting-95990efbc5478ec6123ecd9ca473aa34489b1678.zip
[88424] ContentModel moved to Internal and SSE Core
Diffstat (limited to 'bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java')
-rw-r--r--bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java b/bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java
new file mode 100644
index 0000000000..a9de05df06
--- /dev/null
+++ b/bundles/org.eclipse.wst.sse.core/src-contentmodel/org/eclipse/wst/sse/core/internal/contentmodel/CMNamedNodeMap.java
@@ -0,0 +1,41 @@
+/*
+* Copyright (c) 2002 IBM Corporation and others.
+* All rights reserved. This program and the accompanying materials
+* are made available under the terms of the Common Public License v1.0
+* which accompanies this distribution, and is available at
+* http://www.eclipse.org/legal/cpl-v10.html
+*
+* Contributors:
+* IBM - Initial API and implementation
+* Jens Lukowski/Innoopract - initial renaming/restructuring
+*
+*/
+package org.eclipse.wst.sse.core.internal.contentmodel;
+import java.util.Iterator;
+/**
+ * NamedCMNodeMap
+ */
+public interface CMNamedNodeMap {
+/**
+ * getLength method
+ * @return int
+ */
+int getLength();
+/**
+ * getNamedItem method
+ * @return CMNode
+ * @param name java.lang.String
+ */
+CMNode getNamedItem(String name);
+/**
+ * item method
+ * @return CMNode
+ * @param index int
+ */
+CMNode item(int index);
+
+/**
+ *
+ */
+Iterator iterator();
+}

Back to the top