persistent class %DeepSee.UserLibrary.UserSetting
extends %Persistent, %DeepSee.UserLibrary.UserData
parameter XMLNAME = "userSetting";
This parameter provides the default XMLNAME for the class. If it is
empty then the class name will be used to construct a default XML name.
The default XMLNAME is used as the top level tag
when exporting objects and the export context
did not provide an XML container name.
property Comment
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Context
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property FullName
as %String(MAXLEN=2000,XMLPROJECTION="attribute") [ Transient ];
property Name
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Value
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
index (Idx on Name) [IdKey];