Package org.eclipse.ecf.remoteservices.ui

Examples of org.eclipse.ecf.remoteservices.ui.MethodInvocationDialog.open()


  protected void executeMethodInvocationDialog(final Class cls,
      final IRemoteService remoteService) {
    final MethodInvocationDialog mid = new MethodInvocationDialog(
        (Shell) null, cls);
    if (mid.open() == Window.OK) {
      final int timeout = (mid.getTimeout() > 0) ? mid.getTimeout()
          : 30000;
      final String methodName = mid.getMethod().getName();
      final Object[] methodArgs = mid.getMethodArguments();
      final IRemoteCall remoteCall = new IRemoteCall() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.