Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-08-01 11:53:02 +0000
committerLars Vogel2014-08-01 11:58:44 +0000
commit07dab31c1ee348ab99dd3ad4329bc1d02c3fcdc5 (patch)
tree4068b80a005d225454fef83be6c05af03302b1d5
parentc96e6cc6b574efd022219d6abe7f2b3962b5f792 (diff)
downloadeclipse.platform.ui-07dab31c1ee348ab99dd3ad4329bc1d02c3fcdc5.tar.gz
eclipse.platform.ui-07dab31c1ee348ab99dd3ad4329bc1d02c3fcdc5.tar.xz
eclipse.platform.ui-07dab31c1ee348ab99dd3ad4329bc1d02c3fcdc5.zip
Bug 425962 - [New Contributors] Remove (non-Javadoc) @see statements ifI20140803-2000
@Override is used Change-Id: Ia68cb1ce25ea381ca03511ba03f20452a20af87d Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java238
1 files changed, 23 insertions, 215 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java
index 7d7475c6415..acf45ba09de 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java
@@ -87,11 +87,6 @@ public abstract class ActionFactory {
public static final ActionFactory ABOUT = new ActionFactory("about", //$NON-NLS-1$
IWorkbenchCommandConstants.HELP_ABOUT) {
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -128,9 +123,6 @@ public abstract class ActionFactory {
public static final ActionFactory ACTIVATE_EDITOR = new ActionFactory(
"activateEditor", IWorkbenchCommandConstants.WINDOW_ACTIVATE_EDITOR) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -152,10 +144,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory BACK = new ActionFactory("back", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_BACK) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -174,9 +164,6 @@ public abstract class ActionFactory {
*/
public static final ActionFactory BACKWARD_HISTORY = new ActionFactory(
"backardHistory", IWorkbenchCommandConstants.NAVIGATE_BACKWARD_HISTORY) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -194,10 +181,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE = new ActionFactory("close",//$NON-NLS-1$
IWorkbenchCommandConstants.FILE_CLOSE) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -217,10 +202,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE_ALL = new ActionFactory("closeAll",//$NON-NLS-1$
IWorkbenchCommandConstants.FILE_CLOSE_ALL) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -242,10 +225,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE_OTHERS = new ActionFactory("closeOthers",//$NON-NLS-1$
IWorkbenchCommandConstants.FILE_CLOSE_OTHERS) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -265,10 +246,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE_ALL_PERSPECTIVES = new ActionFactory(
"closeAllPerspectives", IWorkbenchCommandConstants.WINDOW_CLOSE_ALL_PERSPECTIVES) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -291,9 +270,6 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE_ALL_SAVED = new ActionFactory(
"closeAllSaved") {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -311,11 +287,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory CLOSE_PERSPECTIVE = new ActionFactory(
"closePerspective", IWorkbenchCommandConstants.WINDOW_CLOSE_PERSPECTIVE) {//$NON-NLS-1$
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -349,10 +321,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory INTRO = new ActionFactory("intro", //$NON-NLS-1$
IWorkbenchCommandConstants.HELP_WELCOME) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -379,11 +349,8 @@ public abstract class ActionFactory {
*/
public static final ActionFactory COPY = new ActionFactory("copy", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_COPY) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
- @Override
+
+ @Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
@@ -409,9 +376,6 @@ public abstract class ActionFactory {
public static final ActionFactory CUT = new ActionFactory("cut", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_CUT) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -438,9 +402,6 @@ public abstract class ActionFactory {
public static final ActionFactory DELETE = new ActionFactory("delete", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_DELETE) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -471,9 +432,6 @@ public abstract class ActionFactory {
public static final ActionFactory EDIT_ACTION_SETS = new ActionFactory(
"editActionSets", IWorkbenchCommandConstants.WINDOW_CUSTOMIZE_PERSPECTIVE) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -498,9 +456,6 @@ public abstract class ActionFactory {
public static final ActionFactory EXPORT = new ActionFactory("export", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_EXPORT) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -529,9 +484,6 @@ public abstract class ActionFactory {
public static final ActionFactory FIND = new ActionFactory("find", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_FIND_AND_REPLACE) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -556,10 +508,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory FORWARD = new ActionFactory("forward", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_FORWARD) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -580,9 +529,6 @@ public abstract class ActionFactory {
public static final ActionFactory FORWARD_HISTORY = new ActionFactory(
"forwardHistory", IWorkbenchCommandConstants.NAVIGATE_FORWARD_HISTORY) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -602,9 +548,6 @@ public abstract class ActionFactory {
public static final ActionFactory GO_INTO = new ActionFactory("goInto", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_GO_INTO) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -624,10 +567,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory IMPORT = new ActionFactory("import", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_IMPORT) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -655,9 +595,6 @@ public abstract class ActionFactory {
public static final ActionFactory LOCK_TOOL_BAR = new ActionFactory("lockToolBar", //$NON-NLS-1$
IWorkbenchCommandConstants.WINDOW_LOCK_TOOLBAR) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -679,9 +616,6 @@ public abstract class ActionFactory {
public static final ActionFactory MAXIMIZE = new ActionFactory("maximize", //$NON-NLS-1$
IWorkbenchCommandConstants.WINDOW_MAXIMIZE_ACTIVE_VIEW_OR_EDITOR) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -707,9 +641,6 @@ public abstract class ActionFactory {
public static final ActionFactory MINIMIZE = new ActionFactory("minimize", //$NON-NLS-1$
IWorkbenchCommandConstants.WINDOW_MINIMIZE_ACTIVE_VIEW_OR_EDITOR) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -731,10 +662,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory MOVE = new ActionFactory("move", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_MOVE) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -755,9 +683,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEW = new ActionFactory("new", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_NEW) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -789,9 +714,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEW_WIZARD_DROP_DOWN = new ActionFactory(
"newWizardDropDown") { //$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -810,9 +732,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEXT = new ActionFactory("next", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_NEXT) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -838,9 +757,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEXT_EDITOR = new ActionFactory(
"nextEditor", IWorkbenchCommandConstants.WINDOW_NEXT_EDITOR) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -872,9 +788,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEXT_PART = new ActionFactory("nextPart", //$NON-NLS-1$
IWorkbenchCommandConstants.WINDOW_NEXT_VIEW) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -904,9 +817,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEXT_PERSPECTIVE = new ActionFactory(
"nextPerspective", IWorkbenchCommandConstants.WINDOW_NEXT_PERSPECTIVE) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -930,11 +840,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory OPEN_NEW_WINDOW = new ActionFactory(
"openNewWindow", IWorkbenchCommandConstants.WINDOW_NEW_WINDOW) {//$NON-NLS-1$
-
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -959,9 +865,6 @@ public abstract class ActionFactory {
public static final ActionFactory PASTE = new ActionFactory("paste", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_PASTE) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -988,9 +891,6 @@ public abstract class ActionFactory {
public static final ActionFactory PREFERENCES = new ActionFactory(
"preferences", IWorkbenchCommandConstants.WINDOW_PREFERENCES) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1010,9 +910,6 @@ public abstract class ActionFactory {
public static final ActionFactory PREVIOUS = new ActionFactory("previous", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_PREVIOUS) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1038,9 +935,6 @@ public abstract class ActionFactory {
public static final ActionFactory PREVIOUS_EDITOR = new ActionFactory(
"previousEditor", IWorkbenchCommandConstants.WINDOW_PREVIOUS_EDITOR) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1071,9 +965,6 @@ public abstract class ActionFactory {
public static final ActionFactory PREVIOUS_PART = new ActionFactory(
"previousPart", IWorkbenchCommandConstants.WINDOW_PREVIOUS_VIEW) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1103,9 +994,6 @@ public abstract class ActionFactory {
public static final ActionFactory PREVIOUS_PERSPECTIVE = new ActionFactory(
"previousPerspective", IWorkbenchCommandConstants.WINDOW_PREVIOUS_PERSPECTIVE) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1129,10 +1017,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory PRINT = new ActionFactory("print", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_PRINT) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1160,9 +1045,6 @@ public abstract class ActionFactory {
public static final ActionFactory PROPERTIES = new ActionFactory(
"properties", IWorkbenchCommandConstants.FILE_PROPERTIES) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1183,9 +1065,6 @@ public abstract class ActionFactory {
public static final ActionFactory QUIT = new ActionFactory("quit", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_EXIT) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1209,9 +1088,6 @@ public abstract class ActionFactory {
public static final ActionFactory REDO = new ActionFactory("redo", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_REDO) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1239,9 +1115,6 @@ public abstract class ActionFactory {
public static final ActionFactory REFRESH = new ActionFactory("refresh", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_REFRESH) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1262,9 +1135,6 @@ public abstract class ActionFactory {
public static final ActionFactory RENAME = new ActionFactory("rename", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_RENAME) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1285,9 +1155,6 @@ public abstract class ActionFactory {
public static final ActionFactory RESET_PERSPECTIVE = new ActionFactory(
"resetPerspective", IWorkbenchCommandConstants.WINDOW_RESET_PERSPECTIVE) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1311,9 +1178,6 @@ public abstract class ActionFactory {
public static final ActionFactory REVERT = new ActionFactory("revert", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_REVERT) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1333,10 +1197,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory SAVE = new ActionFactory("save", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_SAVE) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1359,9 +1220,6 @@ public abstract class ActionFactory {
public static final ActionFactory SAVE_ALL = new ActionFactory("saveAll", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_SAVE_ALL) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1383,10 +1241,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory SAVE_AS = new ActionFactory("saveAs", //$NON-NLS-1$
IWorkbenchCommandConstants.FILE_SAVE_AS) {
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1409,9 +1264,6 @@ public abstract class ActionFactory {
public static final ActionFactory SAVE_PERSPECTIVE = new ActionFactory(
"savePerspective", IWorkbenchCommandConstants.WINDOW_SAVE_PERSPECTIVE_AS) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1435,10 +1287,7 @@ public abstract class ActionFactory {
*/
public static final ActionFactory SELECT_ALL = new ActionFactory(
"selectAll", IWorkbenchCommandConstants.EDIT_SELECT_ALL) {//$NON-NLS-1$
-
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
+
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1459,9 +1308,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_EDITOR = new ActionFactory(
"showEditor") {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1480,9 +1326,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_OPEN_EDITORS = new ActionFactory(
"showOpenEditors") {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1505,9 +1348,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_WORKBOOK_EDITORS = new ActionFactory(
"showWorkBookEditors") {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1531,11 +1371,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_QUICK_ACCESS = new ActionFactory(
"showQuickAccess") { //$NON-NLS-1$
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
WorkbenchCommandAction action = new WorkbenchCommandAction("org.eclipse.ui.window.quickAccess", window); //$NON-NLS-1$
@@ -1554,9 +1389,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_PART_PANE_MENU = new ActionFactory(
"showPartPaneMenu") {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1577,9 +1409,6 @@ public abstract class ActionFactory {
public static final ActionFactory SHOW_VIEW_MENU = new ActionFactory(
"showViewMenu", IWorkbenchCommandConstants.WINDOW_SHOW_VIEW_MENU) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1601,9 +1430,6 @@ public abstract class ActionFactory {
public static final ActionFactory UNDO = new ActionFactory("undo", //$NON-NLS-1$
IWorkbenchCommandConstants.EDIT_UNDO) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1630,9 +1456,6 @@ public abstract class ActionFactory {
public static final ActionFactory UP = new ActionFactory("up", //$NON-NLS-1$
IWorkbenchCommandConstants.NAVIGATE_UP) {
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1653,9 +1476,6 @@ public abstract class ActionFactory {
public static final ActionFactory HELP_CONTENTS = new ActionFactory(
"helpContents", IWorkbenchCommandConstants.HELP_HELP_CONTENTS) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1676,9 +1496,6 @@ public abstract class ActionFactory {
public static final ActionFactory HELP_SEARCH = new ActionFactory(
"helpSearch", IWorkbenchCommandConstants.HELP_HELP_SEARCH) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1699,9 +1516,6 @@ public abstract class ActionFactory {
public static final ActionFactory DYNAMIC_HELP = new ActionFactory(
"dynamicHelp", IWorkbenchCommandConstants.HELP_DYNAMIC_HELP) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1722,9 +1536,6 @@ public abstract class ActionFactory {
public static final ActionFactory OPEN_PERSPECTIVE_DIALOG = new ActionFactory(
"openPerspectiveDialog", IWorkbenchCommandConstants.PERSPECTIVES_SHOW_PERSPECTIVE) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {
@@ -1752,9 +1563,6 @@ public abstract class ActionFactory {
public static final ActionFactory NEW_EDITOR = new ActionFactory(
"newEditor", IWorkbenchCommandConstants.WINDOW_NEW_EDITOR) {//$NON-NLS-1$
- /* (non-Javadoc)
- * @see org.eclipse.ui.actions.ActionFactory#create(org.eclipse.ui.IWorkbenchWindow)
- */
@Override
public IWorkbenchAction create(IWorkbenchWindow window) {
if (window == null) {

Back to the top