Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2004-11-11 08:37:49 +0000
committerdavid_williams2004-11-11 08:37:49 +0000
commitcfdb2cdab3d25850ead6a1722c31a0ca30e8d885 (patch)
tree32ca55207a0d43a811a76933a2c2b8ccb6616f13 /bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java
parent6fdcc7185a155ce3b8eccaed32db98524c3c29f9 (diff)
downloadwebtools.sourceediting-cfdb2cdab3d25850ead6a1722c31a0ca30e8d885.tar.gz
webtools.sourceediting-cfdb2cdab3d25850ead6a1722c31a0ca30e8d885.tar.xz
webtools.sourceediting-cfdb2cdab3d25850ead6a1722c31a0ca30e8d885.zip
refresh
Diffstat (limited to 'bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java')
-rw-r--r--bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java
new file mode 100644
index 0000000000..048394fe6e
--- /dev/null
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/parser/JSPCapableParser.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ * Jens Lukowski/Innoopract - initial renaming/restructuring
+ *
+ *******************************************************************************/
+package org.eclipse.wst.sse.core.parser;
+
+import java.util.List;
+
+public interface JSPCapableParser extends RegionParser, BlockTagParser {
+ void addNestablePrefix(TagMarker marker);
+
+ /**
+ * returns the TagMarkers for prefixes that are allowed to be nestable
+ *
+ * @return
+ */
+ List getNestablePrefixes();
+
+ void removeNestablePrefix(String tagName);
+}

Back to the top