Update method comments for RuinIngestAction

This commit is contained in:
Richard Cordovano 2015-10-13 16:58:49 -04:00
parent 7c8dc89df1
commit edb29d67dd

View File

@ -44,7 +44,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese
} }
/** /**
* Call getMenuPresenters to create images sublist * @inheritDoc
*/ */
@Override @Override
public void performAction() { public void performAction() {
@ -52,9 +52,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese
} }
/** /**
* Gets the name of this action. This may be presented as an item in a menu. * @inheritDoc
*
* @return actionName
*/ */
@Override @Override
public String getName() { public String getName() {
@ -62,9 +60,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese
} }
/** /**
* Gets the HelpCtx associated with implementing object * @inheritDoc
*
* @return HelpCtx or HelpCtx.DEFAULT_HELP
*/ */
@Override @Override
public HelpCtx getHelpCtx() { public HelpCtx getHelpCtx() {
@ -72,10 +68,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese
} }
/** /**
* Create a sublist of images updated by RunIngestSubMenu Each has an action * @inheritDoc
* to perform Ingest Modules on it.
*
* @return the images sublist created.
*/ */
@Override @Override
public JMenuItem getMenuPresenter() { public JMenuItem getMenuPresenter() {
@ -85,9 +78,10 @@ public final class RunIngestAction extends CallableSystemAction implements Prese
} }
/** /**
* This method does nothing, use performAction instead. * @inheritDoc
*/ */
@Override @Override
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
performAction();
} }
} }