List of usage examples for com.google.gwt.user.client.rpc AsyncCallback interface-usage
From source file ca.ericslandry.client.GwtCallback.java
/** * @author <a href="http://james.apache.org/hupa/index.html">Apache Hupa</a> */ public abstract class GwtCallback<T> implements AsyncCallback<T> { private DispatchAsync dispatcher = null; private EventBus eventBus = null;
From source file carteirainveste.client.DateUtil.java
class QuoteServiceGetQuoteCallback implements AsyncCallback<String> { int portfolioTabRow; QuoteServiceGetQuoteCallback(int row) { portfolioTabRow = row;
From source file cc.kune.core.client.rpcservices.AsyncCallbackSimple.java
/**
* The Class AsyncCallbackSimple.
*
* @param <T>
* the generic type
* @author vjrj@ourproject.org (Vicente J. Ruiz Jurado)
From source file ch.heftix.mailxel.client.CountMessageCallback.java
public class CountMessageCallback implements AsyncCallback<Long> { StatusItem si2 = null; Label label = null; public CountMessageCallback(StatusItem si, Label label) {
From source file ch.heftix.mailxel.client.MailxelAsyncCallback.java
public interface MailxelAsyncCallback<T> extends AsyncCallback<T> { public void setStatusItem(final StatusItem statusItem); }
From source file ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback.java
/**
* Abstract super class of call backs. Subclasses have to implement {@link #process(Object)}. Note,
* that instances of this class and its subclasses are stateful and can not be reused.
*
* @author Franz-Josef Elmer
*/
From source file ch.unifr.pai.mindmap.client.DummyAsyncCallback.java
/**
* An asynchronous callback which does nothing when it is successful but displays an alert if there was a failure.
*
* @author Oliver Schmid
*
* @param <T>
From source file client.helper.CallbackListener.java
/** * Abstract GUI Callback. * * @author gassen */ public abstract class CallbackListener implements AsyncCallback {
From source file client.helper.ExecutionCallbackHandler.java
/** * Callback handler for execution Button. * * @author gassen */ public class ExecutionCallbackHandler implements AsyncCallback {
From source file client.helper.GuiLoggerCallback.java
/**
* Callback mock for logger.
*
* @author gassen
*
*/