|
From: <caw...@us...> - 2006-10-25 02:06:26
|
Revision: 1626
http://svn.sourceforge.net/rubyeclipse/?rev=1626&view=rev
Author: cawilliams
Date: 2006-10-24 19:06:21 -0700 (Tue, 24 Oct 2006)
Log Message:
-----------
fix references to annotation layers (they were using jdt names, not rdt)
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyDocumentProvider.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyDocumentProvider.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyDocumentProvider.java 2006-10-25 01:42:14 UTC (rev 1625)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyDocumentProvider.java 2006-10-25 02:06:21 UTC (rev 1626)
@@ -473,9 +473,9 @@
static {
AnnotationPreferenceLookup lookup= EditorsUI.getAnnotationPreferenceLookup();
TASK_LAYER= computeLayer("org.eclipse.ui.workbench.texteditor.task", lookup); //$NON-NLS-1$
- INFO_LAYER= computeLayer("org.eclipse.jdt.ui.info", lookup); //$NON-NLS-1$
- WARNING_LAYER= computeLayer("org.eclipse.jdt.ui.warning", lookup); //$NON-NLS-1$
- ERROR_LAYER= computeLayer("org.eclipse.jdt.ui.error", lookup); //$NON-NLS-1$
+ INFO_LAYER= computeLayer("org.rubypeople.rdt.ui.info", lookup); //$NON-NLS-1$
+ WARNING_LAYER= computeLayer("org.rubypeople.rdt.ui.warning", lookup); //$NON-NLS-1$
+ ERROR_LAYER= computeLayer("org.rubypeople.rdt.ui.error", lookup); //$NON-NLS-1$
}
private static int computeLayer(String annotationType, AnnotationPreferenceLookup lookup) {
@@ -719,8 +719,8 @@
/**
- * Annotation model dealing with java marker annotations and temporary problems.
- * Also acts as problem requester for its compilation unit. Initially inactive. Must explicitly be
+ * Annotation model dealing with ruby marker annotations and temporary problems.
+ * Also acts as problem requester for its ruby script. Initially inactive. Must explicitly be
* activated.
*/
protected static class RubyScriptAnnotationModel extends ResourceMarkerAnnotationModel implements IProblemRequestor, IProblemRequestorExtension {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|