All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.IList Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
package de.swm.gwt.client;

import de.swm.gwt.client.interfaces.ILocation;

/**
 * Allgemeines Interface fuer GWT-Listen.
 *
 * @author Steiner.Christian 
* copyright (C) 13, SWM Services GmbH S-IP-AN-EE * @param Das DTO des Formulars. */ public interface IList { /** * Setzt den Presenter der Liste. * @param presenter der Presenter. */ void setPresenter(IListPresenter presenter); /** * Rendert die Liste in die uebergebene Location. * @param currentLocation die aktelle location */ void render(ILocation currentLocation); /** * Entfernt die Liste aus der Location. * * @param location Location, aus der die Liste entfernt werden soll */ public void remove(ILocation location); /** * reloads the list data. */ void onLoad(); /** * selects a row in the datagrid. * * @param toSelect the object/row to select */ void selectRow(T toSelect); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy