For more information on class definition classes, refer to
About Class Definition Classes.
Properties (Including Private)Copy link to this section
property Abstract as %CacheString ;
Copy link to this section
A flag indicating if this method is abstract (1) or not (0).
Property methods: AbstractGet(), AbstractIsValid(), AbstractSet()
property Call as %CacheString [ Calculated ];
Copy link to this section
For call methods, a string containing the name of the routine to call.
Property methods: CallGet(), CallSet()
property ClassMethod as %CacheString ;
Copy link to this section
A flag indicating whether the method is a class method (1) or an instance method (0).
Property methods: ClassMethodGet(), ClassMethodIsValid(), ClassMethodSet()
property ClassName as %CacheString ;
Copy link to this section
A string containing the name of the class the method belongs to.
Property methods: ClassNameGet(), ClassNameIsValid(), ClassNameSet()
property Code as %CacheString [ Calculated ];
Copy link to this section
The implementation for the method.
Property methods: CodeGet(), CodeModeGet(), CodeModeIsValid(), CodeModeSet(), CodeSet()
property CodeMode as %CacheString [ InitialExpression = "code" ];
Copy link to this section
A string containing the code mode of the method.
Property methods: CodeModeGet(), CodeModeIsValid(), CodeModeSet()
property Description as %CacheString ;
Copy link to this section
A string containing the description of the method.
Property methods: DescriptionGet(), DescriptionIsValid(), DescriptionSet()
property Expression as %CacheString [ Calculated ];
Copy link to this section
Property methods: ExpressionGet(), ExpressionSet()
A flag indicating whether the method is final (1) or not (0).
Property methods: FinalGet(), FinalIsValid(), FinalSet()
A string containing the list of arguments for the method.
Property methods: FormalSpecGet(), FormalSpecIsValid(), FormalSpecSet()
property GenerateAfter as %CacheString ;
Copy link to this section
For a method generator, a string containing the name of another method generator
which should be called before this one when compiling.
Property methods: GenerateAfterGet(), GenerateAfterIsValid(), GenerateAfterSet()
property Generator as %CacheString [ Calculated ];
Copy link to this section
The implementation of the method generator for this method.
Property methods: GeneratorGet(), GeneratorSet()
property Implementation as %CacheString ;
Copy link to this section
The implementation of the method generator for this method.
Property methods: ImplementationGet(), ImplementationIsValid(), ImplementationSet()
property Internal as %CacheString ;
Copy link to this section
A flag indicating whether the method is internal (1) or not (0).
Property methods: InternalGet(), InternalIsValid(), InternalSet()
property Language as %CacheString [ InitialExpression = "cache" ];
Copy link to this section
This is for internal use.
Property methods: LanguageGet(), LanguageIsValid(), LanguageSet()
A string containing the name of the method.
Property methods: NameGet(), NameIsValid(), NameSet()
property NotForProperty as %CacheString ;
Copy link to this section
This is for internal use.
Property methods: NotForPropertyGet(), NotForPropertyIsValid(), NotForPropertySet()
property NotInheritable as %CacheString ;
Copy link to this section
This is for internal use.
Property methods: NotInheritableGet(), NotInheritableIsValid(), NotInheritableSet()
property PlaceAfter as %CacheString ;
Copy link to this section
A string containing the name of another method which should be placed
before this method in generated code.
Property methods: PlaceAfterGet(), PlaceAfterIsValid(), PlaceAfterSet()
A flag indicating whether the method is private (1) or public (0).
Property methods: PrivateGet(), PrivateIsValid(), PrivateSet()
property ReadOnly as %CacheString [ InitialExpression = 0 ];
Copy link to this section
Set to true of the implementation is too large to load into the property as
you can not save this class, but you may look at the other properties
Property methods: ReadOnlyGet(), ReadOnlyIsValid(), ReadOnlySet()
property ReturnType as %CacheString ;
Copy link to this section
A string containing the return type (a class name) for the method. If there is
no return type it contains a null string ("").
Property methods: ReturnTypeGet(), ReturnTypeIsValid(), ReturnTypeSet()
A string containing the name of this method when projected as an SQLPROCEDURE.
Property methods: SQLNameGet(), SQLNameIsValid(), SQLNameSet()
A flag indicating whether the method can be called as an SQL stored procedure (1) or not (0).
A stored procedure must marked as a class method.
Property methods: SQLProcGet(), SQLProcIsValid(), SQLProcSet()
property SequenceNumber as %CacheString ;
Copy link to this section
Sequence number used to determine order of this item in Studio editor and in XML export format.
Property methods: SequenceNumberGet(), SequenceNumberIsValid(), SequenceNumberSet()
Methods (Including Private)Copy link to this section
private method %LoadData(id As %String ) as %Status
Copy link to this section
Inherited description: %LoadData() - loads an object from storage. This method is
implemented by the storage class.
private method %OnNew(initvalue As %String ) as %Status
Copy link to this section
Inherited description: This callback method is invoked by the
%New() method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call.
When customizing this method, override the arguments with whatever variables and types you expect to receive from %New().
For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status
If instead of returning a %Status code this returns an oref and this oref is a subclass of the current
class then this oref will be the one returned to the caller of %New method.
private method %OnValidateObject() as %Status
Copy link to this section
Inherited description: This callback method is invoked by the
%ValidateObject() method to
provide notification that the current object is being validated.
If this method returns an error then %ValidateObject() will fail.
private method %SaveData(id As %String ) as %Status
Copy link to this section
Inherited description: %SaveData() - saves an object to disk, checks uniqueness and referential
integrity constraints, and maintains index structures. This method is
implemented by the storage class.
method ExpressionGet() as %CacheString
Copy link to this section
method GeneratorGet() as %CacheString
Copy link to this section