Example usage for com.vaadin.ui AbstractComponent subclass-usage

List of usage examples for com.vaadin.ui AbstractComponent subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui AbstractComponent subclass-usage.

Usage

From source file org.opennms.features.topology.ssh.internal.SSHTerminal.java

/**
 * The SSHTerminal class is a custom Vaadin component that emulates VT100
 * terminals and connects remotely to servers via SSH
 * @author lmbell
 * @author pdgrenon
 */

From source file org.opennms.features.vaadin.nodemaps.internal.NodeMap.java

public class NodeMap extends AbstractComponent {

    private static final long serialVersionUID = 2L;

    public NodeMap() {
    }

From source file org.opennms.features.vaadin.nodemaps.internal.NodeMapComponent.java

public class NodeMapComponent extends AbstractComponent {
    private static final long serialVersionUID = 3L;
    private static final Logger LOG = LoggerFactory.getLogger(NodeMapComponent.class);

    private NodeIdSelectionRpc m_rpc = new NodeIdSelectionRpc() {
        private static final long serialVersionUID = 3263343063196874423L;

From source file org.opennms.features.vaadin.topology.TopologyComponent.java

@ClientWidget(VTopologyComponent.class)
public class TopologyComponent extends AbstractComponent
        implements Action.Container, ItemSetChangeListener, PropertySetChangeListener, ValueChangeListener {

    public class MapManager {

From source file org.peergreen.vaadin.diagram.Diagram.java

/**
 * Diagram component that has to be embedded by applications wanted to use Diagram addon.
 * @author Florent Benoit
 */

public class Diagram extends com.vaadin.ui.AbstractComponent implements DropTarget, LegacyComponent {

From source file org.tltv.gantt.Gantt.java

/**
 * Gantt Chart server side component.
 * <p>
 * Default timeline resolution is {@link Resolution#Day}. Timeline range is not
 * set by default. First thing to do after construction is to set timeline range
 * by {@link #setStartDate(Date)} and {@link #setEndDate(Date)}.

From source file org.vaadin.addons.portallayout.portal.PortalBase.java

/**
 * Base class for Portal Layouts.
 */
@StyleSheet("portallayout_styles.css")
public abstract class PortalBase extends AbstractComponent
        implements MarginHandler, HasComponents, HasPortletCollapseListeners, HasPortletCloseListeners {

From source file org.vaadin.addons.serverpush.ServerPush.java

/**
 * Server push server-side widget
 */
@ClientWidget(VServerPush.class)
public class ServerPush extends AbstractComponent {

From source file org.vaadin.alump.distributionbar.DistributionBar.java

/**
 * Server side component for the VDistributionBar widget. Distribution Bar is
 * simple graphical bar that can be used to show distribution of items between
 * different groups. For example distribution of YES and NO votes. Bar must have
 * at least two values, but there is not any upper limit. Layout where bar is
 * used can limit the amount of parts that will fit to screen.

From source file org.vaadin.alump.fancylayouts.FancyImage.java

/**
 * FancyImage can be used to present multiple images in one place. For example
 * present pictures of product. It adds transtions when presented image is
 * changed. It also adds slideshow mode.
 */
@SuppressWarnings("serial")