Skip to content

Commit b2ab83c

Browse files
authored
Merge pull request #82 from cesarParra/2.15.1_rc
2.15.1 rc
2 parents 792073a + 235aed7 commit b2ab83c

22 files changed

+126
-143
lines changed

docs/types/Classes/nspc.ChildClass.md

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -21,66 +21,58 @@ ChildClass
2121

2222
## Fields
2323

24-
### `privateStringFromChild``String`
24+
### `private privateStringFromChild``String`
2525

2626

27-
### `protectedGrandParentField``String`
27+
### `protected protectedGrandParentField``String`
2828

2929
*Inherited*
3030

31-
### `protectedStringFromParent``String`
31+
### `protected protectedStringFromParent``String`
3232

3333
*Inherited*
3434

3535
This is a protected string, use carefully.
3636

37-
### `publicStringFromParent``String`
37+
### `public publicStringFromParent``String`
3838

3939
*Inherited*
4040

4141
---
4242
## Properties
4343

44-
### `AProp``String`
44+
### `protected AProp``String`
4545

4646
*Inherited*
4747

4848
---
4949
## Methods
50-
### `doSomething()`
51-
### `override overridableMethodOverridden()`
50+
### `public doSomething()`
51+
### `public override overridableMethodOverridden()`
5252

5353
This method was overridden.
5454

55-
#### Return
55+
#### Returns
5656

57-
**Type**
57+
|Type|Description|
58+
|---|---|
59+
|String|A String.|
5860

59-
String
60-
61-
**Description**
62-
63-
A String.
64-
65-
### `execute()`
61+
### `public execute()`
6662

6763
Executes the command.
6864

69-
### `getValue()`
65+
### `public getValue()`
7066

7167
Returns a value based on the executed command.
7268

73-
#### Return
74-
75-
**Type**
76-
77-
String
78-
79-
**Description**
69+
#### Returns
8070

81-
The value
71+
|Type|Description|
72+
|---|---|
73+
|String|The value|
8274

83-
### `overridableMethod()`
75+
### `public overridableMethod()`
8476

8577
*Inherited*
8678

docs/types/Main/nspc.SampleClass.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This is a class description. This class relates to [nspc.SampleInterface](types/
2020

2121
## Constructors
2222
### My Super Group
23-
##### `SampleClass()`
23+
##### `public SampleClass()`
2424

2525
`NAMESPACEACCESSIBLE`
2626

@@ -47,7 +47,7 @@ SampleClass sampleInstance = new SampleClass();
4747

4848
---
4949
### Other
50-
##### `SampleClass(String argument1, String argument2)`
50+
##### `public SampleClass(String argument1, String argument2)`
5151

5252
Constructs a SampleClass with an argument.
5353

@@ -62,28 +62,32 @@ Constructs a SampleClass with an argument.
6262
## Fields
6363
### Common Constants
6464

65-
* `ANOTHER_CONSTANT``String`
66-
* `A_CONSTANT``String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
67-
* `listOfStrings``List<String>`
65+
* `public ANOTHER_CONSTANT``String`
66+
* `public A_CONSTANT``String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
67+
* `public listOfStrings``List<String>`
6868
---
6969
### 'General' Constants
7070

71-
* `GENERAL_ANOTHER_CONSTANT``String`
72-
* `GENERAL_A_CONSTANT``String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
71+
* `public GENERAL_ANOTHER_CONSTANT``String`
72+
* `public GENERAL_A_CONSTANT``String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
7373
---
7474
### Other variables
7575

76-
* `someVariable``String`
76+
* `public someVariable``String`
77+
---
78+
### Other
79+
80+
* `private somePrivateStuff``String`
7781
---
7882
## Properties
7983

80-
### `AnotherProp``Decimal`
84+
### `public AnotherProp``Decimal`
8185

8286
`AURAENABLED`
8387

8488
This is a Decimal property.
8589

86-
### `MyProp``String`
90+
### `public MyProp``String`
8791

8892
`AURAENABLED`
8993
`DEPRECATED`
@@ -93,7 +97,7 @@ This is a String property.
9397
---
9498
## Methods
9599
### A method group
96-
##### `static sampleMethod(String argument1, String argument2)`
100+
##### `public static sampleMethod(String argument1, String argument2)`
97101

98102
`NAMESPACEACCESSIBLE`
99103

@@ -106,15 +110,11 @@ Executes commands based on the passed in argument.
106110
|`argument1`|Argument1 to debug|
107111
|`argument2`|Argument2 to debug|
108112

109-
###### Return
110-
111-
**Type**
113+
###### Returns
112114

113-
String
114-
115-
**Description**
116-
117-
Empty string
115+
|Type|Description|
116+
|---|---|
117+
|String|Empty string|
118118

119119
###### Example
120120
```apex
@@ -123,7 +123,7 @@ System.debug(result);
123123
```
124124

125125

126-
##### `static anotherSampleMethod(String arg1)`
126+
##### `public static anotherSampleMethod(String arg1)`
127127

128128
Something here
129129

@@ -132,7 +132,7 @@ Something here
132132

133133
---
134134
### Other
135-
##### `static call()`
135+
##### `public static call()`
136136

137137
Calls the method. This methods allows you to call it.
138138

@@ -153,14 +153,14 @@ Inner class belonging to SampleClass.
153153

154154
#### Properties
155155

156-
##### `InnerProp``String`
156+
##### `public InnerProp``String`
157157

158158

159159
Description of the inner property.
160160

161161
---
162162
#### Methods
163-
##### `innerMethod()`
163+
##### `public innerMethod()`
164164

165165
Executes from the inner class.
166166

@@ -172,14 +172,14 @@ Inner class belonging to SampleClass.
172172

173173
#### Properties
174174

175-
##### `InnerProp``String`
175+
##### `public InnerProp``String`
176176

177177

178178
Description of the inner property.
179179

180180
---
181181
#### Methods
182-
##### `innerMethod()`
182+
##### `public innerMethod()`
183183

184184
Executes from the inner class.
185185

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# nspc.GrandparentClass
22
## Fields
33

4-
### `protectedGrandParentField``String`
4+
### `protected protectedGrandParentField``String`
55

66

77
---
88
## Properties
99

10-
### `AProp``String`
10+
### `protected AProp``String`
1111

1212

1313
---

docs/types/Misc-Group/nspc.InterfaceWithInheritance.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,24 @@
66
,
77
[nspc.AnotherInterface](types/Classes/nspc.AnotherInterface.md)
88
## Methods
9-
### `execute()`
9+
### `global execute()`
1010

1111
*Inherited*
1212

1313

1414
Executes the command.
1515

16-
### `getValue()`
16+
### `global getValue()`
1717

1818
*Inherited*
1919

2020

2121
Returns a value based on the executed command.
2222

23-
#### Return
23+
#### Returns
2424

25-
**Type**
26-
27-
String
28-
29-
**Description**
30-
31-
The value
25+
|Type|Description|
26+
|---|---|
27+
|String|The value|
3228

3329
---

docs/types/Misc-Group/nspc.MemberGrouping.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
## Fields
33
### Group old syntax
44

5-
* `anotherInGroup1``String`
6-
* `inGroup1``String`
5+
* `public anotherInGroup1``String`
6+
* `public inGroup1``String`
77
---
88
### Group new syntax
99
Group's description
1010

11-
* `anotherInGroup2``String`
12-
* `inGroup2``String` - Description for constant in group 2
11+
* `public anotherInGroup2``String`
12+
* `public inGroup2``String` - Description for constant in group 2
1313
---

docs/types/Misc-Group/nspc.ParentClass.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ ParentClass
88

99
## Fields
1010

11-
### `privateStringFromParent``String`
11+
### `private privateStringFromParent``String`
1212

1313

14-
### `protectedGrandParentField``String`
14+
### `protected protectedGrandParentField``String`
1515

1616
*Inherited*
1717

18-
### `protectedStringFromParent``String`
18+
### `protected protectedStringFromParent``String`
1919

2020

2121
This is a protected string, use carefully.
2222

23-
### `publicStringFromParent``String`
23+
### `public publicStringFromParent``String`
2424

2525

2626
---
2727
## Properties
2828

29-
### `AProp``String`
29+
### `protected AProp``String`
3030

3131
*Inherited*
3232

3333
---
3434
## Methods
35-
### `overridableMethod()`
36-
### `overridableMethodOverridden()`
35+
### `public overridableMethod()`
36+
### `public overridableMethodOverridden()`
3737
---
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# nspc.Reference1
22
## Fields
33

4-
### `reference2Member``Reference2`
4+
### `public reference2Member``Reference2`
55

66

77
This is a reference 2 member. Lorem.
88

9-
### `reference3Member``Reference3`
9+
### `public reference3Member``Reference3`
1010

1111

12-
### `reference4Collection``List<Reference4>`
12+
### `public reference4Collection``List<Reference4>`
1313

1414

15-
### `reference5Member``Reference5`
15+
### `public reference5Member``Reference5`
1616

1717

1818
---
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# nspc.Reference2
22
## Fields
33

4-
### `objectReference``Object`
4+
### `public objectReference``Object`
55

66

77
This is an object reference.
88

9-
### `stringMember``String`
9+
### `public stringMember``String`
1010

1111

1212
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# nspc.Reference3
22
## Fields
33

4-
### `someBoolean``Boolean`
4+
### `public someBoolean``Boolean`
55

66

77
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# nspc.Reference4
22
## Fields
33

4-
### `someString``String`
4+
### `public someString``String`
55

66

77
---

0 commit comments

Comments
 (0)