X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java index e31c253..9c5dd12 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java @@ -21,7 +21,7 @@ package net.sourceforge.phpdt.core; public interface IJavaModelMarker { /** - * Java model problem marker type (value "org.eclipse.jdt.core.problem"). + * Java model problem marker type (value "net.sourceforge.phpdt.core.problem"). * 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 "org.eclipse.jdt.core.transient_problem"). + * Java model transient problem marker type (value "net.sourceforge.phpdt.core.transient_problem"). * 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 "org.eclipse.jdt.core.task"). + * Java model task marker type (value "net.sourceforge.phpdt.core.task"). * 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 PHPCore - * option "org.eclipse.jdt.core.compiler.taskTag". + * option "net.sourceforge.phpdt.core.compiler.taskTag". * @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 "org.eclipse.jdt.core.buildpath_problem"). + * Build path problem marker type (value "net.sourceforge.phpdt.core.buildpath_problem"). * This can be used to recognize those markers in the workspace that flag problems * detected by the Java tooling during classpath setting. */