List of usage examples for com.vaadin.event Action subclass-usage
From source file com.foc.vaadin.gui.components.FVTablePopupMenu.java
@SuppressWarnings("serial") public abstract class FVTablePopupMenu extends Action { public abstract void actionPerformed(FocObject focObject); private boolean allowThisMenu = false;
From source file org.jdal.vaadin.ui.table.ButtonListener.java
/** * A Swing like Action. Holds caption and icon * * @author Jose Luis Martin */ public abstract class ButtonListener extends Action implements ClickListener, Serializable {
From source file org.jumpmind.vaadin.ui.sqlexplorer.DbTreeAction.java
abstract public class DbTreeAction extends Action { private static final long serialVersionUID = 1L; public DbTreeAction(String caption) { super(caption);
From source file org.opennms.features.topology.app.internal.OperationCommand.java
public class OperationCommand extends Action implements Command { private static final long serialVersionUID = -6018957365232489699L; @Override public Action getAction() {
From source file org.opennms.features.vaadin.app.Command.java
public abstract class Command extends Action implements MenuBar.Command { public Command(String caption) { super(caption); }
From source file org.vaadin.anna.gridactionrenderer.GridAction.java
/**
* Grid-specific Action with a specific icon and description that is displayed
* in a tooltip when used together with {@link GridActionRenderer} and
* {@link ActionGrid}. Can be given given its own style names.
* <p>
* NOTE: there is no option for row-specific styling at the moment.
From source file org.vaadin.viritin.fluency.event.FluentAction.java
/**
* An {@link Action} complemented by fluent setters.
*
* @author Max Schuster
* @see Action
*/