Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java')
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java130
1 files changed, 65 insertions, 65 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java
index dec239de04..de959ce0e8 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPPartitionScanner.java
@@ -1,13 +1,13 @@
/*******************************************************************************
* Copyright (c) 2008 Phil Muldoon <pkmuldoon@picobot.org>.
- *
+ *
* 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:
- * Phil Muldoon <pkmuldoon@picobot.org> - initial API and implementation.
+ * Phil Muldoon <pkmuldoon@picobot.org> - initial API and implementation.
*******************************************************************************/
package org.eclipse.linuxtools.internal.systemtap.ui.ide.editors.stp;
@@ -24,73 +24,73 @@ import org.eclipse.jface.text.rules.Token;
import org.eclipse.jface.text.rules.WordRule;
public class STPPartitionScanner extends RuleBasedPartitionScanner {
- public final static String STP_PARTITIONING = "__stp_partitioning"; //$NON-NLS-1$
-
- public final static String STP_STRING = "__stp_string"; //$NON-NLS-1$
- public final static String STP_COMMENT = "__stp_comment"; //$NON-NLS-1$
- public final static String STP_CONDITIONAL = "__stp_conditional"; //$NON-NLS-1$
- public final static String STP_MULTILINE_COMMENT = "__stp_multiline_comment"; //$NON-NLS-1$
-
- public static String[] STP_PARTITION_TYPES = { IDocument.DEFAULT_CONTENT_TYPE,
- STP_COMMENT, STP_MULTILINE_COMMENT, STP_STRING, STP_CONDITIONAL};
-
- /**
- * Detect empty comments
- */
- private static class EmptyCommentDetector implements IWordDetector {
- @Override
- public boolean isWordStart(char c) {
- return (c == '/');
- }
-
- @Override
- public boolean isWordPart(char c) {
- return (c == '*' || c == '/');
- }
- }
-
- /**
- * Cope with the empty comment issue.
- */
- private static class EmptyCommentRule extends WordRule implements IPredicateRule {
-
- private IToken fSuccessToken;
-
- public EmptyCommentRule(IToken successToken) {
- super(new EmptyCommentDetector());
- fSuccessToken= successToken;
- addWord("/**/", fSuccessToken); //$NON-NLS-1$
- }
-
- @Override
- public IToken evaluate(ICharacterScanner scanner, boolean resume) {
- return evaluate(scanner);
- }
-
- @Override
- public IToken getSuccessToken() {
- return fSuccessToken;
- }
- }
-
- public STPPartitionScanner() {
-
- IToken stpComment = new Token(STP_COMMENT);
- IToken stpMultilineComment = new Token(STP_MULTILINE_COMMENT);
- IToken stpConditional = new Token(STP_CONDITIONAL);
- IToken stpString = new Token(STP_STRING);
-
- // Add special case word rule.
- EmptyCommentRule emptyCommentRule= new EmptyCommentRule(stpComment);
+ public final static String STP_PARTITIONING = "__stp_partitioning"; //$NON-NLS-1$
+
+ public final static String STP_STRING = "__stp_string"; //$NON-NLS-1$
+ public final static String STP_COMMENT = "__stp_comment"; //$NON-NLS-1$
+ public final static String STP_CONDITIONAL = "__stp_conditional"; //$NON-NLS-1$
+ public final static String STP_MULTILINE_COMMENT = "__stp_multiline_comment"; //$NON-NLS-1$
+
+ public static String[] STP_PARTITION_TYPES = { IDocument.DEFAULT_CONTENT_TYPE,
+ STP_COMMENT, STP_MULTILINE_COMMENT, STP_STRING, STP_CONDITIONAL};
+
+ /**
+ * Detect empty comments
+ */
+ private static class EmptyCommentDetector implements IWordDetector {
+ @Override
+ public boolean isWordStart(char c) {
+ return (c == '/');
+ }
+
+ @Override
+ public boolean isWordPart(char c) {
+ return (c == '*' || c == '/');
+ }
+ }
+
+ /**
+ * Cope with the empty comment issue.
+ */
+ private static class EmptyCommentRule extends WordRule implements IPredicateRule {
+
+ private IToken fSuccessToken;
+
+ public EmptyCommentRule(IToken successToken) {
+ super(new EmptyCommentDetector());
+ fSuccessToken= successToken;
+ addWord("/**/", fSuccessToken); //$NON-NLS-1$
+ }
+
+ @Override
+ public IToken evaluate(ICharacterScanner scanner, boolean resume) {
+ return evaluate(scanner);
+ }
+
+ @Override
+ public IToken getSuccessToken() {
+ return fSuccessToken;
+ }
+ }
+
+ public STPPartitionScanner() {
+
+ IToken stpComment = new Token(STP_COMMENT);
+ IToken stpMultilineComment = new Token(STP_MULTILINE_COMMENT);
+ IToken stpConditional = new Token(STP_CONDITIONAL);
+ IToken stpString = new Token(STP_STRING);
+
+ // Add special case word rule.
+ EmptyCommentRule emptyCommentRule= new EmptyCommentRule(stpComment);
setPredicateRules(new IPredicateRule[] {
- new EndOfLineRule("//", stpComment), //$NON-NLS-1$
- new MultiLineRule("/*", "*/", stpMultilineComment), //$NON-NLS-1$//$NON-NLS-2$
+ new EndOfLineRule("//", stpComment), //$NON-NLS-1$
+ new MultiLineRule("/*", "*/", stpMultilineComment), //$NON-NLS-1$//$NON-NLS-2$
new EndOfLineRule("#", stpComment), //$NON-NLS-1$
- emptyCommentRule,
- new SingleLineRule("\"", "\"", stpString, '\\', false, true), //$NON-NLS-1$ //$NON-NLS-2$
+ emptyCommentRule,
+ new SingleLineRule("\"", "\"", stpString, '\\', false, true), //$NON-NLS-1$ //$NON-NLS-2$
new MultiLineRule("%(", "%)", stpConditional), //$NON-NLS-1$ //$NON-NLS-2$
});
- }
+ }
}

Back to the top