Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2004-06-23 13:37:51 +0000
committerDani Megert2004-06-23 13:37:51 +0000
commitbb6ef114c0ce93c4a75ffbf4f8e0b7dfa4cdf126 (patch)
treee12da0de160585812c237434da3330446490fc14 /org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
parentcab0475aa15fc739d1b600205c0efca2717633d0 (diff)
downloadeclipse.platform.text-bb6ef114c0ce93c4a75ffbf4f8e0b7dfa4cdf126.tar.gz
eclipse.platform.text-bb6ef114c0ce93c4a75ffbf4f8e0b7dfa4cdf126.tar.xz
eclipse.platform.text-bb6ef114c0ce93c4a75ffbf4f8e0b7dfa4cdf126.zip
Javadoc updates
Diffstat (limited to 'org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java')
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java13
1 files changed, 5 insertions, 8 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
index f6b1ec58c24..50c3454f10d 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AddMarkerAction.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
@@ -10,8 +10,6 @@
*******************************************************************************/
package org.eclipse.ui.texteditor;
-
-
import java.util.HashMap;
import java.util.Map;
import java.util.ResourceBundle;
@@ -39,7 +37,6 @@ import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.PlatformUI;
-
/**
* Action for creating a marker of a specified type for the editor's
* input element based on the editor's selection. If required, the
@@ -55,7 +52,7 @@ import org.eclipse.ui.PlatformUI;
* <li><code>"error.dialog.title"</code> - the error dialog's title</li>
* <li><code>"error.dialog.message"</code> - the error dialog's message</li>
* </ul>
- * This class may be instantiated but is not intended for subclassing.
+ * This class may be instantiated but is not intended to be subclassed.
* </p>
*/
public class AddMarkerAction extends TextEditorAction {
@@ -63,13 +60,13 @@ public class AddMarkerAction extends TextEditorAction {
/** The maximum length of an proposed label. */
private static final int MAX_LABEL_LENGTH= 80;
- /** The type for newly created markers */
+ /** The type for newly created markers. */
private String fMarkerType;
/** Should the user be asked for a label? */
private boolean fAskForLabel;
- /** The action's resource bundle */
+ /** The action's resource bundle. */
private ResourceBundle fBundle;
- /** The prefix used for resource bundle lookup */
+ /** The prefix used for resource bundle lookup. */
private String fPrefix;

Back to the top