Package javaforce.webui
Interface WebUIHandler
- All Known Implementing Classes:
TestCamera,TestGL,TestGLCube,TestMedia,TestPI,TestWebUI,VNCWebServer
public interface WebUIHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoidclientConnected(WebUIClient client) Invoked when a client connects for initvoidclientDisconnected(WebUIClient client) Invoked when a client disconnects for cleanupgetPanel(String name, HTTP.Parameters params, WebUIClient client) Returns a root panel for a new client.byte[]getResource(String url, HTTP.Parameters params, WebRequest request, WebResponse response) Returns raw resources from /static/...
-
Method Details
-
getPanel
Returns a root panel for a new client. -
getResource
Returns raw resources from /static/... -
clientConnected
Invoked when a client connects for init -
clientDisconnected
Invoked when a client disconnects for cleanup
-