1 7 8 package projectmanagement.presentation.employees; 9 10 import projectmanagement.presentation.*; 11 import projectmanagement.spec.customer.*; 12 13 import org.w3c.dom.*; 14 import org.w3c.dom.html.*; 15 16 import com.lutris.appserver.server.httpPresentation.HttpPresentation; 18 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms; 19 import com.lutris.appserver.server.httpPresentation.HttpPresentationException; 20 21 import java.io.IOException ; 23 24 27 public class Controls implements HttpPresentation { 28 29 public void run(HttpPresentationComms comms) throws HttpPresentationException, IOException { 30 ControlsHTML page=new ControlsHTML(); 31 comms.response.writeDOM(page); 32 } 33 34 } 35 | Popular Tags |