All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.CommandActionAdapter Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
package de.swm.gwt.client;

import com.google.gwt.user.client.Command;
import de.swm.gwt.client.interfaces.ITypedAction;

/**
 * Adaptiert eine Klasse vom Typ IAction auf den Typ Command.
 * @author Steiner.Christian
* copyright 2013 SWM Service GmbH */ public class CommandActionAdapter implements Command { private ITypedAction action; /** * default constructor. * @param action die action, die adaptiert wird. */ public CommandActionAdapter(ITypedAction action) { this.action = action; } @Override public void execute() { action.execute(null); } }