1 11 package org.eclipse.core.runtime; 12 13 import org.eclipse.equinox.app.IApplication; 14 15 28 public interface IPlatformRunnable { 29 30 33 public static final Integer EXIT_OK = new Integer (0); 34 35 38 public static final Integer EXIT_RESTART = new Integer (23); 39 40 45 public static final Integer EXIT_RELAUNCH = new Integer (24); 46 47 61 public Object run(Object args) throws Exception ; 62 } 63 | Popular Tags |