improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IJavaModelMarker.java
index e31c253..9c5dd12 100644 (file)
@@ -21,7 +21,7 @@ package net.sourceforge.phpdt.core;
 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.
         */
@@ -29,7 +29,7 @@ public interface IJavaModelMarker {
 
 
        /**
-        * 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)
@@ -37,11 +37,11 @@ public interface IJavaModelMarker {
        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 = JavaCore.PLUGIN_ID + ".task"; //$NON-NLS-1$
@@ -76,7 +76,7 @@ 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.
         */