List of usage examples for com.vaadin.ui Button.ClickListener interface-usage
From source file org.jpos.qi.InfoDialog.java
/** * Created by spr on 5/18/16. */ public class InfoDialog extends Window implements Button.ClickListener { Button close = new Button(QI.getQI().getMessage("close"), this);
From source file org.lucidj.iconlist.renderer.IconListRenderer.java
public class IconListRenderer extends CssLayout implements Renderer, LayoutEvents.LayoutClickListener, Button.ClickListener { private final static Logger log = LoggerFactory.getLogger(IconListRenderer.class); private List<Map<String, Object>> source;
From source file org.lunifera.example.vaadin.osgi.jpacontainer.PersonEditor.java
@SuppressWarnings({ "serial", "deprecation" }) public class PersonEditor extends Window implements Button.ClickListener, FormFieldFactory { private final Item personItem; private Form editorForm; private Button saveButton;
From source file org.lunifera.runtime.web.vaadin.databinding.model.internal.ButtonClickListener.java
/** */ @SuppressWarnings("serial") public class ButtonClickListener extends NativePropertyListener implements Button.ClickListener { private long lastActivation;
From source file org.opennms.features.jmxconfiggenerator.webui.ui.ConfigResultView.java
/**
* Represents the result view. It shows all generated configurations (including
* some description texts) to the user.
*
* @author Markus von Rden <mvr@opennms.com>
*/
From source file org.opennms.features.jmxconfiggenerator.webui.ui.mbeans.EditControls.java
/**
* This class represents a "control panel", providing three buttons: edit,
* cancel, save. At the beginning only edit button is visible. After clicking
* edit-Button, cancel and save are visible. Pressing save indicates a commit(),
* cancel a discard() on the outer component (e.g. a table).
*
From source file org.opennms.features.topology.app.internal.ui.icons.IconSelectionDialog.java
public class IconSelectionDialog extends Window implements Window.CloseListener, Button.ClickListener { /** The action to execute when the ok/cancel button is pressed. */ public interface Action { void execute(IconSelectionDialog window); }
From source file org.opennms.features.topology.ssh.internal.AuthWindow.java
/**
* This class creates a window to authorize usernames
* and passwords for the SSH server.
* @author pdgrenon
* @author lmbell
*
From source file org.opennms.features.vaadin.config.PromptWindow.java
/** * The Class Prompt Window. * * @author <a href="mailto:agalue@opennms.org">Alejandro Galue</a> */ @SuppressWarnings("serial")
From source file org.opennms.features.vaadin.dashboard.config.ui.HelpClickListener.java
/** * This class represents a {@link Button.ClickListener} used to invoke the help window. * * @author Christian Pape */ public class HelpClickListener implements Button.ClickListener {