@cparra/apexdocs 2.7.0 → 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/docs/API/SampleClassWithoutModifier.md +11 -11
- package/docs/Main/GroupedClass.md +10 -10
- package/docs/Main/SampleClass.md +188 -188
- package/docs/Misc-Group/AnotherInterface.md +1 -0
- package/docs/Misc-Group/ChildClass.md +78 -0
- package/docs/Misc-Group/GrandparentClass.md +13 -0
- package/docs/Misc-Group/InterfaceWithInheritance.md +33 -0
- package/docs/Misc-Group/ParentClass.md +37 -0
- package/docs/Misc-Group/SampleClassWithoutModifier.md +11 -11
- package/docs/README.md +42 -27
- package/docs/Sample-Interfaces/SampleInterface.md +27 -27
- package/docs/index.html +22 -22
- package/examples/force-app/main/default/classes/AnotherInterface.cls +1 -0
- package/examples/force-app/main/default/classes/ChildClass.cls +24 -0
- package/examples/force-app/main/default/classes/GrandparentClass.cls +5 -0
- package/examples/force-app/main/default/classes/InterfaceWithInheritance.cls +1 -0
- package/examples/force-app/main/default/classes/ParentClass.cls +16 -0
- package/jest.config.js +5 -5
- package/lib/model/inheritance.d.ts +8 -0
- package/lib/model/inheritance.js +3 -0
- package/lib/model/inheritance.js.map +1 -0
- package/lib/model/markdown-file.d.ts +1 -0
- package/lib/model/markdown-file.js +3 -0
- package/lib/model/markdown-file.js.map +1 -1
- package/lib/model/markdown-generation-util/field-declaration-util.d.ts +2 -2
- package/lib/model/markdown-generation-util/field-declaration-util.js +4 -1
- package/lib/model/markdown-generation-util/field-declaration-util.js.map +1 -1
- package/lib/model/markdown-generation-util/method-declaration-util.d.ts +3 -2
- package/lib/model/markdown-generation-util/method-declaration-util.js +9 -0
- package/lib/model/markdown-generation-util/method-declaration-util.js.map +1 -1
- package/lib/model/markdown-generation-util/type-declaration-util.js +60 -0
- package/lib/model/markdown-generation-util/type-declaration-util.js.map +1 -1
- package/lib/model/markdown-type-file.d.ts +4 -3
- package/lib/model/markdown-type-file.js.map +1 -1
- package/lib/service/parser.d.ts +12 -1
- package/lib/service/parser.js +102 -1
- package/lib/service/parser.js.map +1 -1
- package/package.json +3 -3
- package/src/model/inheritance.ts +7 -0
- package/src/model/markdown-file.ts +4 -0
- package/src/model/markdown-generation-util/field-declaration-util.ts +9 -4
- package/src/model/markdown-generation-util/method-declaration-util.ts +28 -10
- package/src/model/markdown-generation-util/type-declaration-util.ts +70 -1
- package/src/model/markdown-type-file.ts +11 -7
- package/src/service/parser.ts +144 -2
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 Cesar Parra
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Cesar Parra
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# SampleClassWithoutModifier
|
|
2
|
-
|
|
3
|
-
`ISTEST`
|
|
4
|
-
## Methods
|
|
5
|
-
### `static thisIsAClassWithoutAModifier()`
|
|
6
|
-
|
|
7
|
-
`ISTEST`
|
|
8
|
-
|
|
9
|
-
This is a test method
|
|
10
|
-
|
|
11
|
-
---
|
|
1
|
+
# SampleClassWithoutModifier
|
|
2
|
+
|
|
3
|
+
`ISTEST`
|
|
4
|
+
## Methods
|
|
5
|
+
### `static thisIsAClassWithoutAModifier()`
|
|
6
|
+
|
|
7
|
+
`ISTEST`
|
|
8
|
+
|
|
9
|
+
This is a test method
|
|
10
|
+
|
|
11
|
+
---
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# GroupedClass
|
|
2
|
-
|
|
3
|
-
Uses a block style apex doc
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
**Group** Main
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
**Test Class** [SampleClass](/Main/SampleClass.md)
|
|
10
|
-
|
|
1
|
+
# GroupedClass
|
|
2
|
+
|
|
3
|
+
Uses a block style apex doc
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
**Group** Main
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
**Test Class** [SampleClass](/Main/SampleClass.md)
|
|
10
|
+
|
package/docs/Main/SampleClass.md
CHANGED
|
@@ -1,188 +1,188 @@
|
|
|
1
|
-
# SampleClass
|
|
2
|
-
|
|
3
|
-
`NAMESPACEACCESSIBLE`
|
|
4
|
-
|
|
5
|
-
`APIVERSION: 54`
|
|
6
|
-
|
|
7
|
-
`STATUS: ACTIVE`
|
|
8
|
-
|
|
9
|
-
This is a class description. This class relates to [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
10
|
-
But this [ClassThatDoesNotExist](ClassThatDoesNotExist) does not exist.
|
|
11
|
-
You can also link using this syntax [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
**Group** Main
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
**CustomAnnotation** A Custom annotation
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
**Author** Cesar Parra
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
**See** [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
24
|
-
|
|
25
|
-
## Constructors
|
|
26
|
-
### My Super Group
|
|
27
|
-
##### `SampleClass()`
|
|
28
|
-
|
|
29
|
-
`NAMESPACEACCESSIBLE`
|
|
30
|
-
|
|
31
|
-
Constructs a SampleClass without any arguments. This relates to [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
32
|
-
|
|
33
|
-
###### Throws
|
|
34
|
-
|
|
35
|
-
|Exception|Description|
|
|
36
|
-
|---|---|
|
|
37
|
-
|`ExcName`|some exception|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
**CustomAnnotation** A Custom method annotation
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
**See** [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
44
|
-
|
|
45
|
-
###### Example
|
|
46
|
-
```apex
|
|
47
|
-
// Example
|
|
48
|
-
SampleClass sampleInstance = new SampleClass();
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
### Other
|
|
54
|
-
##### `SampleClass(String argument1, String argument2)`
|
|
55
|
-
|
|
56
|
-
Constructs a SampleClass with an argument.
|
|
57
|
-
|
|
58
|
-
###### Parameters
|
|
59
|
-
|
|
60
|
-
|Param|Description|
|
|
61
|
-
|---|---|
|
|
62
|
-
|`argument1`|Argument1 definition|
|
|
63
|
-
|`argument2`|Argument2 definition|
|
|
64
|
-
|
|
65
|
-
---
|
|
66
|
-
## Fields
|
|
67
|
-
### Common Constants
|
|
68
|
-
|
|
69
|
-
* `ANOTHER_CONSTANT` → `String`
|
|
70
|
-
* `A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
71
|
-
---
|
|
72
|
-
### 'General' Constants
|
|
73
|
-
|
|
74
|
-
* `GENERAL_ANOTHER_CONSTANT` → `String`
|
|
75
|
-
* `GENERAL_A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
76
|
-
---
|
|
77
|
-
### Other variables
|
|
78
|
-
|
|
79
|
-
* `someVariable` → `String`
|
|
80
|
-
---
|
|
81
|
-
## Properties
|
|
82
|
-
|
|
83
|
-
### `AnotherProp` → `Decimal`
|
|
84
|
-
|
|
85
|
-
`AURAENABLED`
|
|
86
|
-
|
|
87
|
-
This is a Decimal property.
|
|
88
|
-
|
|
89
|
-
### `MyProp` → `String`
|
|
90
|
-
|
|
91
|
-
`AURAENABLED`
|
|
92
|
-
`DEPRECATED`
|
|
93
|
-
|
|
94
|
-
This is a String property.
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
## Methods
|
|
98
|
-
### `static sampleMethod(String argument1, String argument2)`
|
|
99
|
-
|
|
100
|
-
`NAMESPACEACCESSIBLE`
|
|
101
|
-
|
|
102
|
-
Executes commands based on the passed in argument.
|
|
103
|
-
|
|
104
|
-
#### Parameters
|
|
105
|
-
|
|
106
|
-
|Param|Description|
|
|
107
|
-
|---|---|
|
|
108
|
-
|`argument1`|Argument1 to debug|
|
|
109
|
-
|`argument2`|Argument2 to debug|
|
|
110
|
-
|
|
111
|
-
#### Return
|
|
112
|
-
|
|
113
|
-
**Type**
|
|
114
|
-
|
|
115
|
-
String
|
|
116
|
-
|
|
117
|
-
**Description**
|
|
118
|
-
|
|
119
|
-
Empty string
|
|
120
|
-
|
|
121
|
-
#### Example
|
|
122
|
-
```apex
|
|
123
|
-
String result = SampleClass.testMethod();
|
|
124
|
-
System.debug(result);
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
### `static anotherSampleMethod(String arg1)`
|
|
129
|
-
|
|
130
|
-
Something here
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
**Arg1** The arg1 description
|
|
134
|
-
|
|
135
|
-
### `static call()`
|
|
136
|
-
|
|
137
|
-
Calls the method. This methods allows you to call it.
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
## Enums
|
|
141
|
-
### InnerEnum
|
|
142
|
-
|
|
143
|
-
`NAMESPACEACCESSIBLE`
|
|
144
|
-
|
|
145
|
-
This is a namespace accessible enum
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
## Classes
|
|
150
|
-
### AnotherInnerClass
|
|
151
|
-
|
|
152
|
-
Inner class belonging to SampleClass.
|
|
153
|
-
|
|
154
|
-
#### Properties
|
|
155
|
-
|
|
156
|
-
##### `InnerProp` → `String`
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
Description of the inner property.
|
|
160
|
-
|
|
161
|
-
---
|
|
162
|
-
#### Methods
|
|
163
|
-
##### `innerMethod()`
|
|
164
|
-
|
|
165
|
-
Executes from the inner class.
|
|
166
|
-
|
|
167
|
-
---
|
|
168
|
-
|
|
169
|
-
### InnerClass
|
|
170
|
-
|
|
171
|
-
Inner class belonging to SampleClass.
|
|
172
|
-
|
|
173
|
-
#### Properties
|
|
174
|
-
|
|
175
|
-
##### `InnerProp` → `String`
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
Description of the inner property.
|
|
179
|
-
|
|
180
|
-
---
|
|
181
|
-
#### Methods
|
|
182
|
-
##### `innerMethod()`
|
|
183
|
-
|
|
184
|
-
Executes from the inner class.
|
|
185
|
-
|
|
186
|
-
---
|
|
187
|
-
|
|
188
|
-
---
|
|
1
|
+
# SampleClass
|
|
2
|
+
|
|
3
|
+
`NAMESPACEACCESSIBLE`
|
|
4
|
+
|
|
5
|
+
`APIVERSION: 54`
|
|
6
|
+
|
|
7
|
+
`STATUS: ACTIVE`
|
|
8
|
+
|
|
9
|
+
This is a class description. This class relates to [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
10
|
+
But this [ClassThatDoesNotExist](ClassThatDoesNotExist) does not exist.
|
|
11
|
+
You can also link using this syntax [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
**Group** Main
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
**CustomAnnotation** A Custom annotation
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
**Author** Cesar Parra
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
**See** [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
24
|
+
|
|
25
|
+
## Constructors
|
|
26
|
+
### My Super Group
|
|
27
|
+
##### `SampleClass()`
|
|
28
|
+
|
|
29
|
+
`NAMESPACEACCESSIBLE`
|
|
30
|
+
|
|
31
|
+
Constructs a SampleClass without any arguments. This relates to [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
32
|
+
|
|
33
|
+
###### Throws
|
|
34
|
+
|
|
35
|
+
|Exception|Description|
|
|
36
|
+
|---|---|
|
|
37
|
+
|`ExcName`|some exception|
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
**CustomAnnotation** A Custom method annotation
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
**See** [SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
44
|
+
|
|
45
|
+
###### Example
|
|
46
|
+
```apex
|
|
47
|
+
// Example
|
|
48
|
+
SampleClass sampleInstance = new SampleClass();
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
### Other
|
|
54
|
+
##### `SampleClass(String argument1, String argument2)`
|
|
55
|
+
|
|
56
|
+
Constructs a SampleClass with an argument.
|
|
57
|
+
|
|
58
|
+
###### Parameters
|
|
59
|
+
|
|
60
|
+
|Param|Description|
|
|
61
|
+
|---|---|
|
|
62
|
+
|`argument1`|Argument1 definition|
|
|
63
|
+
|`argument2`|Argument2 definition|
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
## Fields
|
|
67
|
+
### Common Constants
|
|
68
|
+
|
|
69
|
+
* `ANOTHER_CONSTANT` → `String` (*Inherited*)
|
|
70
|
+
* `A_CONSTANT` → `String` (*Inherited*) [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
71
|
+
---
|
|
72
|
+
### 'General' Constants
|
|
73
|
+
|
|
74
|
+
* `GENERAL_ANOTHER_CONSTANT` → `String` (*Inherited*)
|
|
75
|
+
* `GENERAL_A_CONSTANT` → `String` (*Inherited*) [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
76
|
+
---
|
|
77
|
+
### Other variables
|
|
78
|
+
|
|
79
|
+
* `someVariable` → `String` (*Inherited*)
|
|
80
|
+
---
|
|
81
|
+
## Properties
|
|
82
|
+
|
|
83
|
+
### `AnotherProp` → `Decimal`
|
|
84
|
+
|
|
85
|
+
`AURAENABLED`
|
|
86
|
+
|
|
87
|
+
This is a Decimal property.
|
|
88
|
+
|
|
89
|
+
### `MyProp` → `String`
|
|
90
|
+
|
|
91
|
+
`AURAENABLED`
|
|
92
|
+
`DEPRECATED`
|
|
93
|
+
|
|
94
|
+
This is a String property.
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
## Methods
|
|
98
|
+
### `static sampleMethod(String argument1, String argument2)`
|
|
99
|
+
|
|
100
|
+
`NAMESPACEACCESSIBLE`
|
|
101
|
+
|
|
102
|
+
Executes commands based on the passed in argument.
|
|
103
|
+
|
|
104
|
+
#### Parameters
|
|
105
|
+
|
|
106
|
+
|Param|Description|
|
|
107
|
+
|---|---|
|
|
108
|
+
|`argument1`|Argument1 to debug|
|
|
109
|
+
|`argument2`|Argument2 to debug|
|
|
110
|
+
|
|
111
|
+
#### Return
|
|
112
|
+
|
|
113
|
+
**Type**
|
|
114
|
+
|
|
115
|
+
String
|
|
116
|
+
|
|
117
|
+
**Description**
|
|
118
|
+
|
|
119
|
+
Empty string
|
|
120
|
+
|
|
121
|
+
#### Example
|
|
122
|
+
```apex
|
|
123
|
+
String result = SampleClass.testMethod();
|
|
124
|
+
System.debug(result);
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
### `static anotherSampleMethod(String arg1)`
|
|
129
|
+
|
|
130
|
+
Something here
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
**Arg1** The arg1 description
|
|
134
|
+
|
|
135
|
+
### `static call()`
|
|
136
|
+
|
|
137
|
+
Calls the method. This methods allows you to call it.
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
## Enums
|
|
141
|
+
### InnerEnum
|
|
142
|
+
|
|
143
|
+
`NAMESPACEACCESSIBLE`
|
|
144
|
+
|
|
145
|
+
This is a namespace accessible enum
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
## Classes
|
|
150
|
+
### AnotherInnerClass
|
|
151
|
+
|
|
152
|
+
Inner class belonging to SampleClass.
|
|
153
|
+
|
|
154
|
+
#### Properties
|
|
155
|
+
|
|
156
|
+
##### `InnerProp` → `String`
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
Description of the inner property.
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
#### Methods
|
|
163
|
+
##### `innerMethod()`
|
|
164
|
+
|
|
165
|
+
Executes from the inner class.
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
### InnerClass
|
|
170
|
+
|
|
171
|
+
Inner class belonging to SampleClass.
|
|
172
|
+
|
|
173
|
+
#### Properties
|
|
174
|
+
|
|
175
|
+
##### `InnerProp` → `String`
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
Description of the inner property.
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
#### Methods
|
|
182
|
+
##### `innerMethod()`
|
|
183
|
+
|
|
184
|
+
Executes from the inner class.
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
---
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# AnotherInterface
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# ChildClass
|
|
2
|
+
|
|
3
|
+
**Inheritance**
|
|
4
|
+
|
|
5
|
+
[GrandparentClass](/Misc-Group/GrandparentClass.md)
|
|
6
|
+
>
|
|
7
|
+
[ParentClass](/Misc-Group/ParentClass.md)
|
|
8
|
+
>
|
|
9
|
+
ChildClass
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
**Implemented types**
|
|
13
|
+
|
|
14
|
+
[SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
15
|
+
|
|
16
|
+
## Fields
|
|
17
|
+
|
|
18
|
+
### `protectedGrandParentField` → `String`
|
|
19
|
+
|
|
20
|
+
*Inherited*
|
|
21
|
+
|
|
22
|
+
### `protectedString` → `String`
|
|
23
|
+
|
|
24
|
+
*Inherited*
|
|
25
|
+
|
|
26
|
+
This is a protected string, use carefully.
|
|
27
|
+
|
|
28
|
+
### `publicString` → `String`
|
|
29
|
+
|
|
30
|
+
*Inherited*
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
## Properties
|
|
34
|
+
|
|
35
|
+
### `AProp` → `String`
|
|
36
|
+
|
|
37
|
+
*Inherited*
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
## Methods
|
|
41
|
+
### `doSomething()`
|
|
42
|
+
### `override overridableMethodOverridden()`
|
|
43
|
+
|
|
44
|
+
This method was overridden.
|
|
45
|
+
|
|
46
|
+
#### Return
|
|
47
|
+
|
|
48
|
+
**Type**
|
|
49
|
+
|
|
50
|
+
String
|
|
51
|
+
|
|
52
|
+
**Description**
|
|
53
|
+
|
|
54
|
+
A String.
|
|
55
|
+
|
|
56
|
+
### `execute()`
|
|
57
|
+
|
|
58
|
+
Executes the command.
|
|
59
|
+
|
|
60
|
+
### `getValue()`
|
|
61
|
+
|
|
62
|
+
Returns a value based on the executed command.
|
|
63
|
+
|
|
64
|
+
#### Return
|
|
65
|
+
|
|
66
|
+
**Type**
|
|
67
|
+
|
|
68
|
+
String
|
|
69
|
+
|
|
70
|
+
**Description**
|
|
71
|
+
|
|
72
|
+
The value
|
|
73
|
+
|
|
74
|
+
### `overridableMethod()`
|
|
75
|
+
|
|
76
|
+
*Inherited*
|
|
77
|
+
|
|
78
|
+
---
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# InterfaceWithInheritance
|
|
2
|
+
|
|
3
|
+
**Extended types**
|
|
4
|
+
|
|
5
|
+
[SampleInterface](/Sample-Interfaces/SampleInterface.md)
|
|
6
|
+
,
|
|
7
|
+
[AnotherInterface](/Misc-Group/AnotherInterface.md)
|
|
8
|
+
## Methods
|
|
9
|
+
### `execute()`
|
|
10
|
+
|
|
11
|
+
*Inherited*
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Executes the command.
|
|
15
|
+
|
|
16
|
+
### `getValue()`
|
|
17
|
+
|
|
18
|
+
*Inherited*
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Returns a value based on the executed command.
|
|
22
|
+
|
|
23
|
+
#### Return
|
|
24
|
+
|
|
25
|
+
**Type**
|
|
26
|
+
|
|
27
|
+
String
|
|
28
|
+
|
|
29
|
+
**Description**
|
|
30
|
+
|
|
31
|
+
The value
|
|
32
|
+
|
|
33
|
+
---
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# ParentClass
|
|
2
|
+
|
|
3
|
+
**Inheritance**
|
|
4
|
+
|
|
5
|
+
[GrandparentClass](/Misc-Group/GrandparentClass.md)
|
|
6
|
+
>
|
|
7
|
+
ParentClass
|
|
8
|
+
|
|
9
|
+
## Fields
|
|
10
|
+
|
|
11
|
+
### `privateString` → `String`
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### `protectedGrandParentField` → `String`
|
|
15
|
+
|
|
16
|
+
*Inherited*
|
|
17
|
+
|
|
18
|
+
### `protectedString` → `String`
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
This is a protected string, use carefully.
|
|
22
|
+
|
|
23
|
+
### `publicString` → `String`
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
## Properties
|
|
28
|
+
|
|
29
|
+
### `AProp` → `String`
|
|
30
|
+
|
|
31
|
+
*Inherited*
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
## Methods
|
|
35
|
+
### `overridableMethod()`
|
|
36
|
+
### `overridableMethodOverridden()`
|
|
37
|
+
---
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# SampleClassWithoutModifier
|
|
2
|
-
|
|
3
|
-
`ISTEST`
|
|
4
|
-
## Methods
|
|
5
|
-
### `static thisIsAClassWithoutAModifier()`
|
|
6
|
-
|
|
7
|
-
`ISTEST`
|
|
8
|
-
|
|
9
|
-
This is a test method
|
|
10
|
-
|
|
11
|
-
---
|
|
1
|
+
# SampleClassWithoutModifier
|
|
2
|
+
|
|
3
|
+
`ISTEST`
|
|
4
|
+
## Methods
|
|
5
|
+
### `static thisIsAClassWithoutAModifier()`
|
|
6
|
+
|
|
7
|
+
`ISTEST`
|
|
8
|
+
|
|
9
|
+
This is a test method
|
|
10
|
+
|
|
11
|
+
---
|