Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java')
-rw-r--r--bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java21
1 files changed, 14 insertions, 7 deletions
diff --git a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java
index 5bbe0156d..f6061fd97 100644
--- a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java
+++ b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/STextDelims.java
@@ -14,17 +14,24 @@ import org.eclipse.equinox.bidi.STextEnvironment;
import org.eclipse.equinox.bidi.custom.STextProcessor;
/**
- * <code>STextDelims</code> is a processor for structured text
- * composed of text segments separated by separators where the text segments
- * may include delimited parts within which separators are treated like
- * regular characters.
- *
- * <p>A delimited part is bounded by a start delimiter and an end delimiter.
- *
+ * A base processor for structured text composed of text segments separated
+ * by separators where the text segments may include delimited parts within
+ * which separators are treated like regular characters.
+ * <p>
+ * A delimited part is bounded by a start delimiter and an end delimiter.
+ * </p>
* @author Matitiahu Allouche
*/
public abstract class STextDelims extends STextProcessor {
+ public STextDelims() {
+ // placeholder
+ }
+
+ public STextDelims(String separators) {
+ super(separators);
+ }
+
/**
* This method locates occurrences of start delimiters.
*

Back to the top