Package org.eclipse.ecf.core.start

Examples of org.eclipse.ecf.core.start.IECFStart.run()


              IECFStart clazz = (IECFStart) member.createExecutableExtension(CLASS_ATTRIBUTE);
              // Create job to do start, and schedule
              if (sync) {
                IStatus result = null;
                try {
                  result = clazz.run(new NullProgressMonitor());
                } catch (final Throwable e) {
                  final String message = "startup extension error"; //$NON-NLS-1$
                  logException(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, message, e), message, e);
                }
                if (result != null && !result.isOK())
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.