Example usage for com.vaadin.ui Component interface-usage

List of usage examples for com.vaadin.ui Component interface-usage

Introduction

In this page you can find the example usage for com.vaadin.ui Component interface-usage.

Usage

From source file annis.visualizers.component.kwic.KWICInterface.java

/**
 * A KWIC (Keyword in context) visualization shows the token of the match and
 * their context in a table like view. This is the basic interface for
 * different variants of the KWIC panel implementation.
 */
public interface KWICInterface extends Component {

From source file com.esofthead.mycollab.mobile.ui.IPagedBeanList.java

/**
 * 
 * @author MyCollab Ltd.
 * @since 4.3.1
 * 
 */

From source file com.esofthead.mycollab.vaadin.ui.table.IPagedBeanTable.java

/**
 * 
 * @author MyCollab Ltd.
 * @since 2.0
 * 
 */

From source file com.esofthead.mycollab.vaadin.web.ui.table.IPagedBeanTable.java

/**
 * @author MyCollab Ltd.
 * @since 2.0
 */
public interface IPagedBeanTable<S extends SearchCriteria, T>
        extends HasSelectableItemHandlers<T>, HasPagableHandlers, Component {

From source file com.expressui.core.view.page.Page.java

/**
 * An interface for marking a page for display in the main window of ExpressUI.
 * A page is also both a Vaadin component and a Spring bean.
 */
public interface Page extends Component, ViewBean {

From source file com.github.peholmst.i18n4vaadin.I18NComponent.java

/**
 * An extended version of the Vaadin {@link Component}-interface that adds a
 * getter and setter method for an {@link com.github.peholmst.i18n4vaadin.I18N}-instance. Vaadin-components that
 * require internationalization should implement this interface.
 * 
 * @author Petter Holmstrm

From source file com.google.code.vaadin.mvp.View.java

/**
 * Interface for each View interface. It extends {@link Component} to allow composite View creation directly from
 * injected View instances.
 *
 * @author Alexey Krylov
 * @since 23.01.13

From source file com.haulmont.cuba.web.toolkit.ui.HasTabSheetBehaviour.java

public interface HasTabSheetBehaviour extends Component {

    TabSheetBehaviour getTabSheetBehaviour();
}

From source file com.haulmont.cuba.web.toolkit.ui.UploadComponent.java

public interface UploadComponent extends Component, Component.Focusable {
    String getAccept();

    void setAccept(String accept);

    void setDescription(String description);

From source file com.haulmont.cuba.web.widgets.HasTabSheetBehaviour.java

public interface HasTabSheetBehaviour extends Component {

    TabSheetBehaviour getTabSheetBehaviour();
}