Package | Description |
---|---|
net.sf.mmm.client.ui.api |
Contains the API to build user-interfaces for an application client.
|
net.sf.mmm.client.ui.api.widget.complex |
Contains the API for complex widgets.
|
net.sf.mmm.client.ui.base |
Contains the base implementation for widgets.
|
net.sf.mmm.client.ui.base.model |
Contains the (base) implementations of the UI models.
|
net.sf.mmm.client.ui.impl.gwt |
Contains the base implementation for Client UI using GWT.
|
net.sf.mmm.client.ui.impl.test |
Contains the test implementation of
client-ui for widgets. |
net.sf.mmm.service.api.client |
Contains the client-specific API for remote invocations.
|
net.sf.mmm.service.api.command.client |
Contains the client-specific API for simple remote services using command style.
|
net.sf.mmm.service.api.rpc.client |
Contains the client-specific API for simple remote services using RPC style.
|
net.sf.mmm.service.base.client |
Contains the client-specific base classes for simple remote services.
|
net.sf.mmm.service.base.command.client |
Contains the client-specific base classes for simple remote services using command style.
|
net.sf.mmm.service.base.rpc.client |
Contains the client-specific base classes for simple remote services using RPC style.
|
Modifier and Type | Method and Description |
---|---|
void |
UiPopupHelper.showPopup(String message,
MessageSeverity severity,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and an "OK" button. |
void |
UiPopupHelper.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and an "OK" button. |
void |
UiPopupHelper.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback,
Map<String,String> id2buttonLabelMap)
This method opens a confirmation popup dialog with the given
message . |
void |
UiPopupHelper.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback,
String labelOk,
String labelCancel)
This method opens a confirmation popup dialog with the given
message and two buttons for the
options "Yes" and "No". |
void |
UiPopupHelper.showPopupYesNo(String message,
String title,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and two buttons for the
options "Yes" and "No". |
Modifier and Type | Method and Description |
---|---|
void |
UiWidgetAbstractTree.UiTreeModel.getChildrenAsync(NODE node,
Consumer<List<NODE>> callback)
This method gets the children of the given tree-node asynchronously.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractUiPopupHelper.showPopup(String message,
MessageSeverity severity,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and an "OK" button. |
void |
AbstractUiPopupHelper.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and an "OK" button. |
void |
AbstractUiPopupHelper.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback,
String labelOk,
String labelCancel)
This method opens a confirmation popup dialog with the given
message and two buttons for the
options "Yes" and "No". |
void |
AbstractUiPopupHelper.showPopupYesNo(String message,
String title,
Consumer<String> callback)
This method opens a confirmation popup dialog with the given
message and two buttons for the
options "Yes" and "No". |
Modifier and Type | Method and Description |
---|---|
void |
UiTreeNodeModel.getChildrenAsync(TreeNodeSimple<VALUE> node,
Consumer<List<TreeNodeSimple<VALUE>>> callback)
This method gets the children of the given tree-node asynchronously.
|
Modifier and Type | Method and Description |
---|---|
void |
UiPopupHelperDummy.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback,
Map<String,String> id2buttonLabelMap)
This method opens a confirmation popup dialog with the given
message . |
Modifier and Type | Method and Description |
---|---|
void |
UiPopupHelperTestImpl.showPopup(String message,
MessageSeverity severity,
String title,
Consumer<String> callback,
Map<String,String> id2buttonLabelMap)
This method opens a confirmation popup dialog with the given
message . |
Modifier and Type | Method and Description |
---|---|
Consumer<Throwable> |
RemoteInvocationQueue.getDefaultFailureCallback()
This method gets the default callback to
handle failures that occurred on
service invocations. |
Consumer<Throwable> |
AttributeReadDefaultFailureCallback.getDefaultFailureCallback()
This method gets the default callback to
handle failures that occurred on
service invocations. |
Modifier and Type | Method and Description |
---|---|
void |
AttributeWriteDefaultFailureCallback.setDefaultFailureCallback(Consumer<Throwable> failureCallback)
This method sets the
default failure callback . |
Modifier and Type | Method and Description |
---|---|
<RESULT extends Serializable> |
RemoteInvocationCommandQueue.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback)
|
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback)
|
<RESULT extends Serializable> |
RemoteInvocationCommandQueue.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
RemoteInvocationCommandQueue.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
Modifier and Type | Method and Description |
---|---|
<SERVICE extends RemoteInvocationService,RESULT> |
RemoteInvocationServiceQueue.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback)
|
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback)
|
<SERVICE extends RemoteInvocationService,RESULT> |
RemoteInvocationServiceQueue.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
RemoteInvocationServiceQueue.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
RemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
RemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
void |
RemoteInvocationServiceQueue.setDefaultFailureCallback(Consumer<Throwable> failureCallback)
This method sets the
default failure callback . |
Modifier and Type | Field and Description |
---|---|
private Consumer<Throwable> |
AbstractRemoteInvocationCaller.defaultFailureCallback |
private Consumer<Throwable> |
RemoteInvocationCallData.failureCallback
The callback to receive a potential service failure.
|
private Consumer<Throwable> |
AbstractRemoteInvocationCaller.AbstractRemoteInvocationQueue.queueFailureCallback |
private Consumer<? extends RESULT> |
RemoteInvocationCallData.successCallback
The callback to receive the service result on success.
|
Modifier and Type | Method and Description |
---|---|
Consumer<Throwable> |
AbstractRemoteInvocationCaller.getDefaultFailureCallback()
This method gets the default callback to
handle failures that occurred on
service invocations. |
Consumer<Throwable> |
AbstractRemoteInvocationCaller.AbstractRemoteInvocationQueue.getDefaultFailureCallback() |
Consumer<Throwable> |
RemoteInvocationCallData.getFailureCallback() |
Consumer<? extends RESULT> |
RemoteInvocationCallData.getSuccessCallback() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRemoteInvocationCaller.setDefaultFailureCallback(Consumer<Throwable> failureCallback)
This method sets the
default failure callback . |
void |
AbstractRemoteInvocationCaller.AbstractRemoteInvocationQueue.setDefaultFailureCallback(Consumer<Throwable> failureCallback)
This method sets the
default failure callback . |
Constructor and Description |
---|
RemoteInvocationCallData(Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
The constructor.
|
RemoteInvocationCallData(Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
The constructor.
|
Modifier and Type | Method and Description |
---|---|
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback)
|
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.RemoteInvocationCommandQueueImpl.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback)
|
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.RemoteInvocationCommandQueueImpl.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
<RESULT extends Serializable> |
AbstractRemoteInvocationCommandCaller.RemoteInvocationCommandQueueImpl.callCommand(RemoteInvocationCommand<RESULT> command,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method invokes the given
RemoteInvocationCommand on a
RemoteInvocationService . |
Modifier and Type | Method and Description |
---|---|
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback)
|
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.RemoteInvocationServiceQueueImpl.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback)
|
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.RemoteInvocationServiceQueueImpl.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
<SERVICE extends RemoteInvocationService,RESULT> |
AbstractRemoteInvocationServiceCaller.RemoteInvocationServiceQueueImpl.getServiceClient(Class<SERVICE> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
This method gets a client-stub for calling exactly one single method on a
RemoteInvocationService . |
Constructor and Description |
---|
ServiceCallData(Class<?> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
The constructor.
|
ServiceCallData(Class<?> serviceInterface,
Class<RESULT> returnType,
Consumer<? extends RESULT> successCallback,
Consumer<Throwable> failureCallback)
The constructor.
|
Copyright © 2001–2016 mmm-Team. All rights reserved.