]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/commands/DoNothing.java
Fix some glitches in the normalization
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / 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 /**
9 * Utilitary command used to enable sub menus in various toolbars. Does nothing
10 */
11 public class DoNothing extends AbstractHandler {
12 public final static String ID = DistPlugin.ID + ".doNothing";
13
14 public Object execute(ExecutionEvent event) throws ExecutionException {
15 return null;
16 }
17 }