Private
Usage
To specify that the method is private, use the following syntax:
Method name(formal_spec) As returnclass [ Private ] { //implementation }
Otherwise, omit this keyword or place the word Not immediately before the keyword.
Details
Private class members can be used only by other members of the same class (or its subclasses). Note that other languages often use the word protected to describe this kind of visibility and use the word private to mean invisibility from subclasses.
This keyword is inherited but you can change its value in subclasses.
Default
If you omit this keyword, this method is not private.
See Also
-
“Method Definitions” in this book
-
“Defining and Calling Methods” in Using Caché Objects
-
“Defining Method and Trigger Generators” in Using Caché Objects
-
“Introduction to Compiler Keywords” in Using Caché Objects