improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IJavaModelMarker.java
index 22cce48..9c5dd12 100644 (file)
@@ -10,7 +10,6 @@
  *******************************************************************************/
 package net.sourceforge.phpdt.core;
 
-import net.sourceforge.phpeclipse.PHPCore;
 
 /**
  * Markers used by the Java model.
@@ -22,30 +21,30 @@ import net.sourceforge.phpeclipse.PHPCore;
 public interface IJavaModelMarker {
 
        /**
-        * Java model problem marker type (value <code>"org.eclipse.jdt.core.problem"</code>).
+        * Java model problem marker type (value <code>"net.sourceforge.phpdt.core.problem"</code>).
         * This can be used to recognize those markers in the workspace that flag problems 
         * detected by the Java tooling during compilation.
         */
-       public static final String JAVA_MODEL_PROBLEM_MARKER = PHPCore.PLUGIN_ID + ".problem"; //$NON-NLS-1$
+       public static final String JAVA_MODEL_PROBLEM_MARKER = JavaCore.PLUGIN_ID + ".problem"; //$NON-NLS-1$
 
 
        /**
-        * Java model transient problem marker type (value <code>"org.eclipse.jdt.core.transient_problem"</code>).
+        * Java model transient problem marker type (value <code>"net.sourceforge.phpdt.core.transient_problem"</code>).
         * This can be used to recognize those markers in the workspace that flag transient
         * problems detected by the Java tooling (such as a problem
         * detected by the outliner, or a problem detected during a code completion)
         */
-       public static final String TRANSIENT_PROBLEM = PHPCore.PLUGIN_ID + ".transient_problem"; //$NON-NLS-1$
+       public static final String TRANSIENT_PROBLEM = JavaCore.PLUGIN_ID + ".transient_problem"; //$NON-NLS-1$
 
        /**
-        * Java model task marker type (value <code>"org.eclipse.jdt.core.task"</code>).
+        * Java model task marker type (value <code>"net.sourceforge.phpdt.core.task"</code>).
         * This can be used to recognize task markers in the workspace that correspond to tasks
         * specified in Java source comments and detected during compilation (for example, 'TO-DO: ...').
         * Tasks are identified by a task tag, which can be customized through <code>PHPCore</code>
-        * option <code>"org.eclipse.jdt.core.compiler.taskTag"</code>.
+        * option <code>"net.sourceforge.phpdt.core.compiler.taskTag"</code>.
         * @since 2.1
         */
-       public static final String TASK_MARKER = PHPCore.PLUGIN_ID + ".task"; //$NON-NLS-1$
+       public static final String TASK_MARKER = JavaCore.PLUGIN_ID + ".task"; //$NON-NLS-1$
 
     
     /** 
@@ -77,11 +76,11 @@ public interface IJavaModelMarker {
         public static final String CYCLE_DETECTED = "cycleDetected"; //$NON-NLS-1$
 
        /**
-        * Build path problem marker type (value <code>"org.eclipse.jdt.core.buildpath_problem"</code>).
+        * Build path problem marker type (value <code>"net.sourceforge.phpdt.core.buildpath_problem"</code>).
         * This can be used to recognize those markers in the workspace that flag problems 
         * detected by the Java tooling during classpath setting.
         */
-       public static final String BUILDPATH_PROBLEM_MARKER = PHPCore.PLUGIN_ID + ".buildpath_problem"; //$NON-NLS-1$
+       public static final String BUILDPATH_PROBLEM_MARKER = JavaCore.PLUGIN_ID + ".buildpath_problem"; //$NON-NLS-1$
        
        /** 
         * Classpath file format marker attribute (value <code>"classpathFileFormat"</code>).