Uses of Class
org.qdl_lang.state.SIEntry
-
Packages that use SIEntry Package Description org.qdl_lang.exceptions All of the exceptions for QDL.org.qdl_lang.parsing Classes that support parsing and the parser itself.org.qdl_lang.state Classes that manage the state of an interpreter session.org.qdl_lang.workspace The workspace and the commands that drive it. -
-
Uses of SIEntry in org.qdl_lang.exceptions
Methods in org.qdl_lang.exceptions that return SIEntry Modifier and Type Method Description SIEntry
InterruptException. getSiEntry()
Methods in org.qdl_lang.exceptions with parameters of type SIEntry Modifier and Type Method Description void
InterruptException. setSiEntry(SIEntry siEntry)
Constructors in org.qdl_lang.exceptions with parameters of type SIEntry Constructor Description InterruptException(String message, Throwable cause, Statement statement, SIEntry siEntry)
InterruptException(String message, Statement statement, SIEntry siEntry)
InterruptException(Throwable cause, Statement statement, SIEntry siEntry)
InterruptException(Statement statement, SIEntry siEntry)
-
Uses of SIEntry in org.qdl_lang.parsing
Methods in org.qdl_lang.parsing with parameters of type SIEntry Modifier and Type Method Description void
QDLRunner. restart(SIEntry siEntry, SIInterrupts siInterrupts, boolean noInterrupt)
-
Uses of SIEntry in org.qdl_lang.state
Methods in org.qdl_lang.state with parameters of type SIEntry Modifier and Type Method Description void
SIEntry. update(SIEntry entry)
For the cases where this is the existing SIEntry and new one has been created by the interrupt handler. -
Uses of SIEntry in org.qdl_lang.workspace
Methods in org.qdl_lang.workspace that return SIEntry Modifier and Type Method Description SIEntry
WorkspaceCommands.SIEntries. getByLabel(Object label)
SIEntry
WorkspaceCommands. getCurrentSIEntry()
SIEntry
WorkspaceCommands.SIEntries. put(Integer key, SIEntry value)
Methods in org.qdl_lang.workspace with parameters of type SIEntry Modifier and Type Method Description void
WorkspaceCommands.SIEntries. addLabel(SIEntry entry)
static void
InterruptUtil. printUpdateMessage(WorkspaceCommands workspaceCommands, SIEntry sie)
SIEntry
WorkspaceCommands.SIEntries. put(Integer key, SIEntry value)
static void
InterruptUtil. updateSIE(InterruptException ix, SIEntry sie)
After the resume command, this updates the entry with the nextInterruptException
's state.
-