1 11 package org.eclipse.help.standalone; 12 13 import org.eclipse.help.internal.standalone.*; 14 15 27 public class Infocenter { 28 private StandaloneInfocenter infocenter; 29 58 public Infocenter(String [] options) { 59 infocenter = new StandaloneInfocenter(options); 60 } 61 64 public void start() throws Exception { 65 infocenter.start(); 66 } 67 70 public void shutdown() throws Exception { 71 infocenter.shutdown(); 72 } 73 99 public static void main(String [] args) { 100 StandaloneInfocenter.main(args); 101 } 102 } 103 | Popular Tags |