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 nz.co.senanque.vaadinsupport.tableeditor.EditorWindow.java

public interface EditorWindow<T> extends Component {

    public void loadObject(T object, boolean newRow);

    public void initialize(List<String> fields);

From source file org.activiti.explorer.ui.content.AttachmentEditorComponent.java

/**
 * Component that is capable of rendering an editable piece of related content.
 * 
 * @see AttachmentRendererManager
 * 
 * @author Frederik Heremans

From source file org.eclipse.hawkbit.ui.tenantconfiguration.authentication.AuthenticationConfigurationItem.java

/**
 * Interface to be implemented by any tenant specific configuration to show on
 * the UI.
 *
 *
 *

From source file org.eclipse.hawkbit.ui.tenantconfiguration.ConfigurationGroup.java

/**
 * Interface that all system configurations have to implement to save and undo
 * their customized changes.
 */
public interface ConfigurationGroup extends Component, ConfigurationItem {

From source file org.eclipse.skalli.view.internal.window.ProjectPanel.java

/**
 * Common interface for components that can be embedded in the project window.
 */
public interface ProjectPanel extends Component {
    public Project getProject();
}

From source file org.escidoc.browser.ui.landingview.LandingView.java

public interface LandingView extends Component {

    void addStartButton(Button button);

}

From source file org.escidoc.browser.ui.navigation.NavigationTreeView.java

public interface NavigationTreeView extends Component {

    void addClickListener(ItemClickListener clickListener);

    void addExpandListener(ExpandListener clickListener);

From source file org.jumpmind.metl.ui.views.design.IComponentEditPanel.java

public interface IComponentEditPanel extends IUiPanel, com.vaadin.ui.Component {

    public void init(boolean readOnly, Component component, ApplicationContext context,
            PropertySheet propertySheet);

}

From source file org.jumpmind.vaadin.ui.sqlexplorer.IContentTab.java

public interface IContentTab extends Component {

    public void selected();

    public void unselected();
}

From source file org.lucidj.api.vui.ObjectRenderer.java

public interface ObjectRenderer extends Component, Aggregate {
    boolean isRendered();

    void link(Object source);

    void unlink();