@@ -20,7 +20,7 @@ This is a class description. This class relates to [nspc.SampleInterface](types/
20
20
21
21
## Constructors
22
22
### My Super Group
23
- ##### ` SampleClass() `
23
+ ##### ` public SampleClass()`
24
24
25
25
` NAMESPACEACCESSIBLE `
26
26
@@ -47,7 +47,7 @@ SampleClass sampleInstance = new SampleClass();
47
47
48
48
---
49
49
### Other
50
- ##### ` SampleClass(String argument1, String argument2) `
50
+ ##### ` public SampleClass(String argument1, String argument2)`
51
51
52
52
Constructs a SampleClass with an argument.
53
53
@@ -62,28 +62,32 @@ Constructs a SampleClass with an argument.
62
62
## Fields
63
63
### Common Constants
64
64
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> `
68
68
---
69
69
### 'General' Constants
70
70
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.
73
73
---
74
74
### Other variables
75
75
76
- * ` someVariable ` → ` String `
76
+ * ` public someVariable ` → ` String `
77
+ ---
78
+ ### Other
79
+
80
+ * ` private somePrivateStuff ` → ` String `
77
81
---
78
82
## Properties
79
83
80
- ### ` AnotherProp ` → ` Decimal `
84
+ ### ` public AnotherProp` → ` Decimal `
81
85
82
86
` AURAENABLED `
83
87
84
88
This is a Decimal property.
85
89
86
- ### ` MyProp ` → ` String `
90
+ ### ` public MyProp` → ` String `
87
91
88
92
` AURAENABLED `
89
93
` DEPRECATED `
@@ -93,7 +97,7 @@ This is a String property.
93
97
---
94
98
## Methods
95
99
### A method group
96
- ##### ` static sampleMethod(String argument1, String argument2) `
100
+ ##### ` public static sampleMethod(String argument1, String argument2)`
97
101
98
102
` NAMESPACEACCESSIBLE `
99
103
@@ -106,15 +110,11 @@ Executes commands based on the passed in argument.
106
110
| ` argument1 ` | Argument1 to debug|
107
111
| ` argument2 ` | Argument2 to debug|
108
112
109
- ###### Return
110
-
111
- ** Type**
113
+ ###### Returns
112
114
113
- String
114
-
115
- ** Description**
116
-
117
- Empty string
115
+ | Type| Description|
116
+ | ---| ---|
117
+ | String| Empty string|
118
118
119
119
###### Example
120
120
``` apex
@@ -123,7 +123,7 @@ System.debug(result);
123
123
```
124
124
125
125
126
- ##### ` static anotherSampleMethod(String arg1) `
126
+ ##### ` public static anotherSampleMethod(String arg1)`
127
127
128
128
Something here
129
129
@@ -132,7 +132,7 @@ Something here
132
132
133
133
---
134
134
### Other
135
- ##### ` static call() `
135
+ ##### ` public static call()`
136
136
137
137
Calls the method. This methods allows you to call it.
138
138
@@ -153,14 +153,14 @@ Inner class belonging to SampleClass.
153
153
154
154
#### Properties
155
155
156
- ##### ` InnerProp ` → ` String `
156
+ ##### ` public InnerProp` → ` String `
157
157
158
158
159
159
Description of the inner property.
160
160
161
161
---
162
162
#### Methods
163
- ##### ` innerMethod() `
163
+ ##### ` public innerMethod()`
164
164
165
165
Executes from the inner class.
166
166
@@ -172,14 +172,14 @@ Inner class belonging to SampleClass.
172
172
173
173
#### Properties
174
174
175
- ##### ` InnerProp ` → ` String `
175
+ ##### ` public InnerProp` → ` String `
176
176
177
177
178
178
Description of the inner property.
179
179
180
180
---
181
181
#### Methods
182
- ##### ` innerMethod() `
182
+ ##### ` public innerMethod()`
183
183
184
184
Executes from the inner class.
185
185
0 commit comments