Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/text/IStructuredTextReParser.java')
-rw-r--r--bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/text/IStructuredTextReParser.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/text/IStructuredTextReParser.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/text/IStructuredTextReParser.java
deleted file mode 100644
index 1755279cd2..0000000000
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/text/IStructuredTextReParser.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-* 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.text;
-
-
-
-import org.eclipse.wst.sse.core.events.StructuredDocumentEvent;
-
-public interface IStructuredTextReParser {
-
- void initialize(Object requester, int start, int lengthToReplace, String changes);
-
- /**
- * This method is provided in anticipation of eventual multithreading. This is needed
- * since the intialize method sets state variables that must be "in sync" with the
- * structuredDocument.
- */
- public boolean isParsing();
-
- /**
- * An entry point for reparsing. It calculates the dirty start and dirty end
- * flatnodes based on the start point and length of the changes, which are
- * provided by the initialize method.
- *
- */
- public StructuredDocumentEvent reparse();
-
- public void setStructuredDocument(IStructuredDocument newStructuredDocument);
-
- public IStructuredTextReParser newInstance();
-}

Back to the top