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");
method VariableGet()
as %String
This is a Get accessor method for the Variable property.
method VariableSet(val As %String)
as %Status
This is a Set accessor method for the Variable property.
index (NameIdx on VariableESC,Pane) [IdKey];