object View
- Alphabetic
- By Inheritance
- View
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class Aborted[TraceData](message: String, partialTrace: Seq[(TraceData, TraceEvent)]) extends RuntimeException with Product with Serializable
Represents situations where a
View
hasn’t reached its done state in the allotted number of ticks.Represents situations where a
View
hasn’t reached its done state in the allotted number of ticks.- TraceData
the type of the model-state descriptions in the trace
- partialTrace
the trace collected until the view was aborted.
- trait HasPauseToggle extends AnyRef
Add this trait on a
View
to give it a pause toggle.Add this trait on a
View
to give it a pause toggle. You’ll still need to calltogglePause
on whichever event you want to pause the view (e.g., user hitting space bar). - abstract class RefreshPolicy extends AnyRef
A superclass for the different policies for updating the image visible in a
View
in response to a change in the model.A superclass for the different policies for updating the image visible in a
View
in response to a change in the model.Note to students: You’re unlikely to need this for anything in O1.
- sealed abstract class TraceEvent extends AnyRef
Describes a single tick or GUI event recorded while tracing a
View
.Describes a single tick or GUI event recorded while tracing a
View
. See theTraceEvent
companion object for specific subtypes.
Value Members
- val TicksPerSecondDefault: Int
The number of clock ticks (24) that a
View
aims to generate per clock tick, unless otherwise specified. - object Always extends RefreshPolicy with Product with Serializable
The RefreshPolicy of seeking to update the image visible in a
View
as often as possible.The RefreshPolicy of seeking to update the image visible in a
View
as often as possible. (Time-consuming but always safe.)Note to students: You’re unlikely to need this for anything in O1.
- object TraceEvent
This companion object of the sealed
TraceEvent
class provides subtypes of the class, which can be used for tracing different kinds of events. - object UnlessIdentical extends RefreshPolicy with Product with Serializable
The RefreshPolicy of seeking to update the image visible in a
View
only when the current model object is non-identical in terms ofequals
than the previous one shown.The RefreshPolicy of seeking to update the image visible in a
View
only when the current model object is non-identical in terms ofequals
than the previous one shown.Note to students: You’re unlikely to need this for anything in O1.
- object UnlessSameReference extends RefreshPolicy with Product with Serializable
The RefreshPolicy of seeking to update the image visible in a
View
only when the current model object is different in identity than the previous one shown.The RefreshPolicy of seeking to update the image visible in a
View
only when the current model object is different in identity than the previous one shown.Note to students: You’re unlikely to need this for anything in O1.