Package org.eclipse.ecf.core.start

Examples of org.eclipse.ecf.core.start.ECFStartJob


                  logException(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, message, e), message, e);
                }
                if (result != null && !result.isOK())
                  logException(result, result.getMessage(), result.getException());
              } else {
                final ECFStartJob job = new ECFStartJob(clazz.getClass().getName(), clazz);
                job.schedule();
              }
            } catch (final CoreException e) {
              logException(e.getStatus(), method, e);
            } catch (final Exception e) {
              logException(new Status(IStatus.ERROR, getDefault().getBundle().getSymbolicName(), IStatus.ERROR, "Unknown start exception", e), method, e); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.core.start.ECFStartJob

Copyright © 2018 www.massapicom. 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.