package fops.presentation;
import com.lutris.appserver.server.httpPresentation.HttpPresentation;
import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
import org.w3c.dom.html.*;
import org.w3c.dom.Node;
import java.io.IOException;
import fops.presentation.*;
import java.text.DateFormat;
import org.w3c.dom.Node;
public class MenuPO implements HttpPresentation {
public void run(HttpPresentationComms comms)
throws HttpPresentationException, IOException {
MenuHTML page = (MenuHTML)comms.xmlcFactory.create(MenuHTML.class);
comms.response.writeDOM(page);
}
}
|