QScxmlCompilerclass is a compiler for SCXML files. 更多 …
Parses an SCXML file and dynamically instantiates a state machine for a successfully parsed SCXML file. If parsing fails, the new state machine cannot start. All errors are returned by
parseErrors().To load an SCXML file,
fromFileorfromDatashould be used. UsingQScxmlCompilerdirectly is only needed when the compiler needs to use a customLoader.
QScxmlCompiler
(
xmlReader
)
¶
- param xmlReader
QXmlStreamReader
Creates a new SCXML compiler for the specified
reader
.
PySide2.QtScxml.QScxmlCompiler.
compile
(
)
¶
Parses an SCXML file and creates a new state machine from it.
If parsing is successful, the returned state machine can be initialized and started. If parsing fails,
parseErrors()
can be used to retrieve a list of errors.
PySide2.QtScxml.QScxmlCompiler.
errors
(
)
¶
Returns the list of parse errors.
PySide2.QtScxml.QScxmlCompiler.
fileName
(
)
¶
unicode
Returns the file name associated with the current input.
另请参阅
PySide2.QtScxml.QScxmlCompiler.
loader
(
)
¶
Returns the loader that is currently used to resolve and load URIs for the SCXML compiler.
另请参阅
PySide2.QtScxml.QScxmlCompiler.
setFileName
(
fileName
)
¶
fileName – unicode
Sets the file name for the current input to
fileName
.
The file name is used for error reporting and for resolving relative path URIs.
另请参阅