persistent class %Studio.WatchVariable
extends %Persistent, %XML.Adaptor
Represents a specific variable to put in the watch list for debugging.
property Pane
as %Integer(XMLPROJECTION="attribute");
relationship Project
as Project [ Inverse = WatchVariables,Cardinality = parent ];
property Variable
as %String(MAXLEN=256,XMLPROJECTION="attribute") [ Calculated ];
index (NameIdx on VariableESC,Pane) [IdKey];