Changeset 3871
- Timestamp:
- Jul 23, 2008, 8:59:15 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/editor/PresentationVisitor.java
r3869 r3871 49 49 import org.refal.rfpdt.compiler.RfpResource; 50 50 import org.refal.rfpdt.compiler.SrcPosition; 51 import org.refal.rfpdt.ui.preferences.IColorPreferences; 51 52 import org.refal.rfpdt.ui.scanner.ColorScanner; 52 import org.refal.rfpdt.ui.scanner.IColorPreferences;53 53 54 54 public class PresentationVisitor implements ProgramVisitor, SentenceVisitor, ExprVisitor { -
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/editor/RfpPresentationReconciler.java
r3869 r3871 8 8 import org.eclipse.jface.util.IPropertyChangeListener; 9 9 import org.eclipse.jface.util.PropertyChangeEvent; 10 import org.refal.rfpdt.ui.preferences.IColorPreferences; 10 11 import org.refal.rfpdt.ui.scanner.ColorScanner; 11 import org.refal.rfpdt.ui.scanner.IColorPreferences;12 12 13 13 public final class RfpPresentationReconciler extends PresentationReconciler implements IPropertyChangeListener { -
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/ui/preferences/IColorPreferences.java
r3869 r3871 1 package org.refal.rfpdt.ui. scanner;1 package org.refal.rfpdt.ui.preferences; 2 2 3 3 public interface IColorPreferences { -
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/ui/preferences/SyntaxColoringPreferencePage.java
r3870 r3871 26 26 import org.eclipse.ui.dialogs.PreferencesUtil; 27 27 import org.refal.rfpdt.ui.RfpUI; 28 import org.refal.rfpdt.ui.scanner.IColorPreferences;29 28 30 29 public class SyntaxColoringPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { -
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/ui/scanner/ColorScanner.java
r3870 r3871 19 19 import org.refal.rfpdt.editor.ColorManager; 20 20 import org.refal.rfpdt.editor.RfpEditor; 21 import org.refal.rfpdt.ui.preferences.IColorPreferences; 21 22 import org.refal.rfpdt.ui.preferences.IPreferenceConstants; 22 23 … … 58 59 private IToken keyword = null; 59 60 private IToken identifier = null; 60 private IToken variable_type = null; ;61 private IToken variable_type = null; 61 62 private IToken variable = null; 62 63 private IToken other = null;
Note: See TracChangeset
for help on using the changeset viewer.