Uses of Class
org.qdl_lang.parsing.QDLInterpreter
-
Packages that use QDLInterpreter Package Description org.qdl_lang.functions Function handling and processing.org.qdl_lang.module Classes that model and manage modules in 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.variables Variables in QDL and classes that support them.org.qdl_lang.workspace The workspace and the commands that drive it. -
-
Uses of QDLInterpreter in org.qdl_lang.functions
Methods in org.qdl_lang.functions with parameters of type QDLInterpreter Modifier and Type Method Description V
FTable. deserializeElement(XMLEventReader xer, SerializationState SerializationState, QDLInterpreter qi)
void
FTable. deserializeFromJSON(net.sf.json.JSONObject json, QDLInterpreter qi, SerializationState serializationState)
void
FStack. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
FTable. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
FTable. processSingleFunction(XMLEventReader xer, QDLInterpreter qi)
Deserialize a single function using the interpreter (and its current state); This assumes that the function will get stuffed into the current state and that will get processed. -
Uses of QDLInterpreter in org.qdl_lang.module
Methods in org.qdl_lang.module with parameters of type QDLInterpreter Modifier and Type Method Description V
MITable. deserializeElement(XMLEventReader xer, SerializationState serializationState, QDLInterpreter qi)
V
MTTable. deserializeElement(XMLEventReader xer, SerializationState SerializationState, QDLInterpreter qi)
void
MITable. deserializeFromJSON(net.sf.json.JSONObject json, QDLInterpreter qi, SerializationState serializationState)
void
MTTable. deserializeFromJSON(net.sf.json.JSONObject json, QDLInterpreter qi, SerializationState serializationState)
void
MIStack. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
MITable. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
Module. fromXML(XMLEventReader xer, edu.uiuc.ncsa.security.core.configuration.XProperties xp, QDLInterpreter qi)
void
MTStack. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
MTTable. fromXML(XMLEventReader xer, QDLInterpreter qi)
-
Uses of QDLInterpreter in org.qdl_lang.parsing
Methods in org.qdl_lang.parsing that return QDLInterpreter Modifier and Type Method Description QDLInterpreter
QDLRunner. getInterpreter()
Methods in org.qdl_lang.parsing with parameters of type QDLInterpreter Modifier and Type Method Description void
QDLRunner. setInterpreter(QDLInterpreter interpreter)
-
Uses of QDLInterpreter in org.qdl_lang.state
Fields in org.qdl_lang.state declared as QDLInterpreter Modifier and Type Field Description QDLInterpreter
SIEntry. interpreter
Methods in org.qdl_lang.state with parameters of type QDLInterpreter Modifier and Type Method Description abstract V
XTable. deserializeElement(XMLEventReader xer, SerializationState SerializationState, QDLInterpreter qi)
Deprecated.abstract void
XTable. deserializeFromJSON(net.sf.json.JSONObject json, QDLInterpreter qi, SerializationState serializationState)
abstract void
XStack. fromXML(XMLEventReader xer, QDLInterpreter qi)
abstract void
XTable. fromXML(XMLEventReader xer, QDLInterpreter qi)
Deprecated. -
Uses of QDLInterpreter in org.qdl_lang.variables
Methods in org.qdl_lang.variables with parameters of type QDLInterpreter Modifier and Type Method Description V
VTable. deserializeElement(XMLEventReader xer, SerializationState SerializationState, QDLInterpreter qi)
void
VTable. deserializeFromJSON(net.sf.json.JSONObject json, QDLInterpreter qi, SerializationState serializationState)
void
VStack. fromXML(XMLEventReader xer, QDLInterpreter qi)
void
VTable. fromXML(XMLEventReader xer, QDLInterpreter qi)
protected void
VTable. fromXMLEntry(XMLEventReader xer, QDLInterpreter qi)
-
Uses of QDLInterpreter in org.qdl_lang.workspace
Methods in org.qdl_lang.workspace that return QDLInterpreter Modifier and Type Method Description protected QDLInterpreter
WorkspaceCommands. cloneInterpreter(edu.uiuc.ncsa.security.util.cli.InputLine inputLine)
QDLInterpreter
WorkspaceCommands. getInterpreter()
Methods in org.qdl_lang.workspace with parameters of type QDLInterpreter Modifier and Type Method Description void
WorkspaceCommands. _xmlWSQDLLoad(QDLInterpreter qdlInterpreter, Reader reader)
Just loads and runs aReader
.
-