]> git.argeo.org Git - gpl/argeo-slc.git/blob - cms/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/commands/DoNothing.java
2a9307a183fa74f9861eab22d502cefecc1894dd
[gpl/argeo-slc.git] / cms / org.argeo.slc.client.ui.dist / src / org / argeo / slc / client / ui / dist / commands / DoNothing.java
1 package org.argeo.slc.client.ui.dist.commands;
2
3 import org.argeo.slc.client.ui.dist.DistPlugin;
4 import org.eclipse.core.commands.AbstractHandler;
5 import org.eclipse.core.commands.ExecutionEvent;
6 import org.eclipse.core.commands.ExecutionException;
7
8 /** Util command used to enable sub menus in various toolbars. Does nothing */
9 public class DoNothing extends AbstractHandler {
10 public final static String ID = DistPlugin.PLUGIN_ID + ".doNothing";
11
12 public Object execute(ExecutionEvent event) throws ExecutionException {
13 return null;
14 }
15 }