Class OTSWebServer
- java.lang.Object
-
- nl.tudelft.simulation.dsol.jetty.sse.OTSWebServer
-
- All Implemented Interfaces:
Serializable
,EventListener
,EventListenerInterface
- Direct Known Subclasses:
CircularModelWeb
,TJunctionDemo
public abstract class OTSWebServer extends Object implements EventListenerInterface
DSOLWebServer.java.
Copyright (c) 2003-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information www.simulation.tudelft.nl. The source code and binary code of this software is proprietary information of Delft University of Technology.- Author:
- Alexander Verbraeck
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OTSWebServer.XHRHandler
Answer handles the events from the web-based user interface.
-
Constructor Summary
Constructors Constructor Description OTSWebServer(String title, OTSSimulatorInterface simulator, Rectangle2D.Double extent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HTMLAnimationPanel
getAnimationPanel()
OTSSimulatorInterface
getSimulator()
String
getTitle()
void
notify(EventInterface event)
protected void
setSpeedFactor(double speedFactor)
protected boolean
startSimulator()
Try to start the simulator, and return whether the simulator has been started.protected boolean
stopSimulator()
Try to stop the simulator, and return whether the simulator has been stopped.
-
-
-
Constructor Detail
-
OTSWebServer
public OTSWebServer(String title, OTSSimulatorInterface simulator, Rectangle2D.Double extent) throws Exception
- Parameters:
title
- String; the title for the model windowsimulator
- SimulatorInterface<?,?,?>; the simulatorextent
- Rectangle2D.Double; the extent to use for the graphics (min/max coordinates)- Throws:
Exception
- in case jetty crashes
-
-
Method Detail
-
getTitle
public final String getTitle()
- Returns:
- title
-
getSimulator
public final OTSSimulatorInterface getSimulator()
- Returns:
- simulator
-
getAnimationPanel
public final HTMLAnimationPanel getAnimationPanel()
- Returns:
- animationPanel
-
startSimulator
protected boolean startSimulator()
Try to start the simulator, and return whether the simulator has been started.- Returns:
- whether the simulator has been started or not
-
stopSimulator
protected boolean stopSimulator()
Try to stop the simulator, and return whether the simulator has been stopped.- Returns:
- whether the simulator has been stopped or not
-
setSpeedFactor
protected void setSpeedFactor(double speedFactor)
- Parameters:
speedFactor
- double; the new speed factor
-
notify
public void notify(EventInterface event) throws RemoteException
- Specified by:
notify
in interfaceEventListenerInterface
- Throws:
RemoteException
-
-