1 11 package org.eclipse.help.internal.appserver; 12 13 import org.eclipse.core.runtime.*; 14 15 29 public interface IWebappServer { 30 39 public void start(int port, String host) throws CoreException; 40 41 44 public void stop() throws CoreException; 45 46 49 public boolean isRunning(); 50 51 62 public void start(String webappName, IPath path, ClassLoader customLoader) 63 throws CoreException; 64 65 68 public void stop(String webappName) throws CoreException; 69 70 75 public int getPort(); 76 77 83 public String getHost(); 84 } 85 | Popular Tags |