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 9c5dd12..f2f983f 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IJavaModelMarker.java @@ -10,7 +10,6 @@ *******************************************************************************/ package net.sourceforge.phpdt.core; - /** * Markers used by the Java model. *

@@ -21,74 +20,81 @@ package net.sourceforge.phpdt.core; public interface IJavaModelMarker { /** - * 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. + * 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. */ - public static final String JAVA_MODEL_PROBLEM_MARKER = JavaCore.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 "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) + * 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) */ - public static final String TRANSIENT_PROBLEM = JavaCore.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 "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 "net.sourceforge.phpdt.core.compiler.taskTag". + * 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 + * "net.sourceforge.phpdt.core.compiler.taskTag". + * * @since 2.1 */ public static final String TASK_MARKER = JavaCore.PLUGIN_ID + ".task"; //$NON-NLS-1$ - - /** - * Id marker attribute (value "arguments"). - * Arguments are concatenated into one String, prefixed with an argument count (followed with colon - * separator) and separated with '#' characters. For example: - * { "foo", "bar" } is encoded as "2:foo#bar", - * { } is encoded as "0: " + /** + * Id marker attribute (value "arguments"). Arguments are + * concatenated into one String, prefixed with an argument count (followed + * with colon separator) and separated with '#' characters. For example: { + * "foo", "bar" } is encoded as "2:foo#bar", { } is encoded as "0: " + * * @since 2.0 */ - public static final String ARGUMENTS = "arguments"; //$NON-NLS-1$ - - /** + public static final String ARGUMENTS = "arguments"; //$NON-NLS-1$ + + /** * Id marker attribute (value "id"). */ - public static final String ID = "id"; //$NON-NLS-1$ + public static final String ID = "id"; //$NON-NLS-1$ - /** - * Flags marker attribute (value "flags"). - * Reserved for future use. + /** + * Flags marker attribute (value "flags"). Reserved for + * future use. */ - public static final String FLAGS = "flags"; //$NON-NLS-1$ + public static final String FLAGS = "flags"; //$NON-NLS-1$ - /** + /** * Cycle detected marker attribute (value "cycleDetected"). - * Used only on buildpath problem markers. - * The value of this attribute is either "true" or "false". + * Used only on buildpath problem markers. The value of this attribute is + * either "true" or "false". */ - public static final String CYCLE_DETECTED = "cycleDetected"; //$NON-NLS-1$ + public static final String CYCLE_DETECTED = "cycleDetected"; //$NON-NLS-1$ /** - * 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 + * 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. */ - public static final String BUILDPATH_PROBLEM_MARKER = JavaCore.PLUGIN_ID + ".buildpath_problem"; //$NON-NLS-1$ - - /** - * Classpath file format marker attribute (value "classpathFileFormat"). - * Used only on buildpath problem markers. - * The value of this attribute is either "true" or "false". + public static final String BUILDPATH_PROBLEM_MARKER = JavaCore.PLUGIN_ID + + ".buildpath_problem"; //$NON-NLS-1$ + + /** + * Classpath file format marker attribute (value + * "classpathFileFormat"). Used only on buildpath problem + * markers. The value of this attribute is either "true" or "false". * * @since 2.0 */ - public static final String CLASSPATH_FILE_FORMAT = "classpathFileFormat"; //$NON-NLS-1$ - + public static final String CLASSPATH_FILE_FORMAT = "classpathFileFormat"; //$NON-NLS-1$ + }