1 11 12 package org.eclipse.equinox.app; 13 14 25 public interface IApplication { 26 27 30 public static final Integer EXIT_OK = new Integer (0); 31 32 35 public static final Integer EXIT_RESTART = new Integer (23); 36 37 42 public static final Integer EXIT_RELAUNCH = new Integer (24); 43 44 63 public Object start(IApplicationContext context) throws Exception ; 64 65 78 public void stop(); 79 } 80 | Popular Tags |