Changes between Version 1 and Version 2 of AccessModifiers
- Timestamp:
- 08/13/08 07:59:41 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AccessModifiers
v1 v2 1 1 = Access Modifiers = 2 2 3 Access Modifiers can be specified on Classes, Class (instance and class) variables and methods to set their visibility and accessibility 3 Access Modifiers can be specified on Classes, Class (instance and class) variables and methods to set their visibility and accessibility[[BR]] 4 4 These are also called 'isNames' in the Cobra doc and Discussion since they're specified with a leading '''is''' keyword. 5 5 … … 13 13 * '''fake''' - specifies item has no implementation - a placeholder 14 14 * '''shared''' - Specifies Class (static) method or variable, 15 * '''virtual''', '''nonvirtual''' - on methods, specifies that itsoverridable or not15 * '''virtual''', '''nonvirtual''' - on methods, specifies that the method overridable or not 16 16 * '''override''', '''new''' - on methods specifies that a method is overriding or replacing a baseclass method of same signature 17 17 * '''public''', '''protected''', '''private''', '''internal''' - specifies item visibility 18 * '''abstract''' - specifies a template only, subclasses must define 18 * '''abstract''' - specifies a template only, subclasses must define fully 19 19 20 Separate multiple bymodifiers with ''',''' e.g .... is protected, override20 Separate multiple modifiers with ''',''' e.g .... is protected, override 21 21 22 22 is fake:: … … 44 44 45 45 is virtual:: 46 method is redefinable 46 method is redefinable (default) 47 47 48 48 is nonvirtual::