1 package fops.presentation;2 3 import com.lutris.appserver.server.httpPresentation.HttpPresentation;4 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;5 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;6 import org.w3c.dom.html.*;7 import org.w3c.dom.Node ;8 import java.io.IOException ;9 import fops.presentation.*;10 import java.text.DateFormat ;11 import org.w3c.dom.Node ;12 13 public class HelpPO implements HttpPresentation {14 15 16 public void run(HttpPresentationComms comms)17 throws HttpPresentationException, IOException {18 19 HelpHTML page = (HelpHTML)comms.xmlcFactory.create(HelpHTML.class);20 comms.response.writeDOM(page);21 22 }23 24 }