@cparra/apexdocs 2.24.0 → 2.25.0-alpha.0
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/.eslintrc.js +12 -12
- package/.github/workflows/ci.yaml +22 -0
- package/.github/workflows/close_stale.yml +22 -22
- package/.prettierrc.js +7 -7
- package/LICENSE +21 -21
- package/README.md +742 -718
- package/apexdocs.config.ts +13 -13
- package/docs/{README.md → __old/README.md} +1 -1
- package/docs/{restapi.json → __old/restapi.json} +589 -589
- package/docs/{types → __old/types}/Classes/nspc.ChildClass.md +97 -97
- package/docs/{types → __old/types}/Main/nspc.SampleClass.md +189 -189
- package/examples/force-app/main/default/classes/AnotherInterface.cls +16 -16
- package/examples/force-app/main/default/classes/ChildClass.cls +42 -42
- package/examples/force-app/main/default/classes/EscapedAnnotations.cls +5 -5
- package/examples/force-app/main/default/classes/GrandparentClass.cls +4 -4
- package/examples/force-app/main/default/classes/GroupedClass.cls +8 -8
- package/examples/force-app/main/default/classes/MemberGrouping.cls +17 -17
- package/examples/force-app/main/default/classes/ParentClass.cls +16 -16
- package/examples/force-app/main/default/classes/SampleClass.cls +166 -166
- package/examples/force-app/main/default/classes/SampleClass.cls-meta.xml +5 -5
- package/examples/force-app/main/default/classes/SampleClassWithoutModifier.cls +9 -9
- package/examples/force-app/main/default/classes/SampleInterface.cls +16 -16
- package/examples/force-app/main/default/restapi/SampleRestResource.cls +195 -195
- package/examples/force-app/main/default/restapi/SampleRestResourceToSkip.cls +35 -35
- package/examples/force-app/main/default/restapi/SampleRestResourceWithInnerClass.cls +24 -24
- package/examples/force-app/main/default/restapi/SampleRestResourceWithoutApexDocs.cls +15 -15
- package/examples/force-app/main/default/restapi/references/Reference1.cls +9 -9
- package/examples/force-app/main/default/restapi/references/Reference2.cls +9 -9
- package/examples/force-app/main/default/restapi/references/Reference3.cls +3 -3
- package/examples/force-app/main/default/restapi/references/Reference4.cls +3 -3
- package/examples/force-app/main/default/restapi/references/Reference5.cls +3 -3
- package/examples/force-app/main/default/restapi/references/Reference6.cls +6 -6
- package/examples/force-app/main/default/restapi/references/Reference7.cls +3 -3
- package/examples/includes/header.md +3 -3
- package/examples/plain-markdown/.forceignore +12 -0
- package/examples/plain-markdown/README.md +301 -0
- package/examples/plain-markdown/config/project-scratch-def.json +5 -0
- package/examples/plain-markdown/force-app/classes/BaseClass.cls +3 -0
- package/examples/plain-markdown/force-app/classes/ParentInterface.cls +3 -0
- package/examples/plain-markdown/force-app/classes/ReferencedEnum.cls +3 -0
- package/examples/plain-markdown/force-app/classes/SampleClass.cls +35 -0
- package/examples/plain-markdown/force-app/classes/SampleEnum.cls +30 -0
- package/examples/plain-markdown/force-app/classes/SampleException.cls +1 -0
- package/examples/plain-markdown/force-app/classes/SampleInterface.cls +46 -0
- package/examples/plain-markdown/package-lock.json +665 -0
- package/examples/plain-markdown/package.json +24 -0
- package/examples/plain-markdown/sfdx-project.json +12 -0
- package/examples/plain-markdown/template.md +3 -0
- package/jest.config.js +5 -5
- package/lib/adapters/apex-types.d.ts +5 -0
- package/lib/adapters/apex-types.js +34 -0
- package/lib/adapters/apex-types.js.map +1 -0
- package/lib/adapters/documentables.d.ts +6 -0
- package/lib/adapters/documentables.js +41 -0
- package/lib/adapters/documentables.js.map +1 -0
- package/lib/adapters/fields-and-properties.d.ts +3 -0
- package/lib/adapters/fields-and-properties.js +10 -0
- package/lib/adapters/fields-and-properties.js.map +1 -0
- package/lib/adapters/methods-and-constructors.d.ts +4 -0
- package/lib/adapters/methods-and-constructors.js +49 -0
- package/lib/adapters/methods-and-constructors.js.map +1 -0
- package/lib/adapters/references.d.ts +5 -0
- package/lib/adapters/references.js +82 -0
- package/lib/adapters/references.js.map +1 -0
- package/lib/adapters/type-utils.d.ts +2 -0
- package/lib/adapters/type-utils.js +8 -0
- package/lib/adapters/type-utils.js.map +1 -0
- package/lib/application/Apexdocs.d.ts +13 -13
- package/lib/application/Apexdocs.js +79 -76
- package/lib/application/Apexdocs.js.map +1 -1
- package/lib/cli/generate.d.ts +2 -2
- package/lib/cli/generate.js +156 -130
- package/lib/cli/generate.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +17 -17
- package/lib/model/apex-bundle.d.ts +6 -6
- package/lib/model/apex-bundle.js +10 -10
- package/lib/model/apex-type-wrappers/ClassMirrorWrapper.d.ts +7 -7
- package/lib/model/apex-type-wrappers/ClassMirrorWrapper.js +13 -13
- package/lib/model/apex-type-wrappers/MethodMirrorWrapper.d.ts +7 -7
- package/lib/model/apex-type-wrappers/MethodMirrorWrapper.js +11 -11
- package/lib/model/inheritance.d.ts +8 -8
- package/lib/model/inheritance.js +2 -2
- package/lib/model/manifest.d.ts +22 -22
- package/lib/model/manifest.js +46 -46
- package/lib/model/manifest.js.map +1 -1
- package/lib/model/markdown-file.d.ts +16 -16
- package/lib/model/markdown-file.js +109 -106
- package/lib/model/markdown-file.js.map +1 -1
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.d.ts +8 -8
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.js +46 -43
- package/lib/model/markdown-generation-util/doc-comment-annotation-util.js.map +1 -1
- package/lib/model/markdown-generation-util/field-declaration-util.d.ts +3 -3
- package/lib/model/markdown-generation-util/field-declaration-util.js +54 -54
- package/lib/model/markdown-generation-util/index.d.ts +3 -3
- package/lib/model/markdown-generation-util/index.js +19 -19
- package/lib/model/markdown-generation-util/method-declaration-util.d.ts +4 -4
- package/lib/model/markdown-generation-util/method-declaration-util.js +114 -114
- package/lib/model/markdown-generation-util/type-declaration-util.d.ts +3 -3
- package/lib/model/markdown-generation-util/type-declaration-util.js +81 -81
- package/lib/model/markdown-home-file.d.ts +11 -11
- package/lib/model/markdown-home-file.js +56 -53
- package/lib/model/markdown-home-file.js.map +1 -1
- package/lib/model/markdown-type-file.d.ts +26 -26
- package/lib/model/markdown-type-file.js +136 -133
- package/lib/model/markdown-type-file.js.map +1 -1
- package/lib/model/openapi/apex-doc-types.d.ts +19 -19
- package/lib/model/openapi/apex-doc-types.js +4 -4
- package/lib/model/openapi/open-api-types.d.ts +93 -93
- package/lib/model/openapi/open-api-types.js +2 -2
- package/lib/model/openapi/open-api.d.ts +16 -16
- package/lib/model/openapi/open-api.js +33 -33
- package/lib/model/openapi/openapi-type-file.d.ts +7 -7
- package/lib/model/openapi/openapi-type-file.js +16 -16
- package/lib/model/outputFile.d.ts +10 -10
- package/lib/model/outputFile.js +28 -28
- package/lib/model/types-repository.d.ts +16 -16
- package/lib/model/types-repository.js +53 -53
- package/lib/service/apex-file-reader.d.ts +14 -14
- package/lib/service/apex-file-reader.js +48 -45
- package/lib/service/apex-file-reader.js.map +1 -1
- package/lib/service/file-system.d.ts +14 -14
- package/lib/service/file-system.js +47 -24
- package/lib/service/file-system.js.map +1 -1
- package/lib/service/file-writer.d.ts +6 -6
- package/lib/service/file-writer.js +56 -33
- package/lib/service/file-writer.js.map +1 -1
- package/lib/service/manifest-factory.d.ts +10 -10
- package/lib/service/manifest-factory.js +16 -13
- package/lib/service/manifest-factory.js.map +1 -1
- package/lib/service/metadata-processor.d.ts +3 -3
- package/lib/service/metadata-processor.js +16 -16
- package/lib/service/parser.d.ts +21 -21
- package/lib/service/parser.js +137 -134
- package/lib/service/parser.js.map +1 -1
- package/lib/service/state.d.ts +9 -9
- package/lib/service/state.js +19 -19
- package/lib/service/walkers/class-walker.d.ts +4 -4
- package/lib/service/walkers/class-walker.js +32 -32
- package/lib/service/walkers/enum-walker.d.ts +4 -4
- package/lib/service/walkers/enum-walker.js +10 -10
- package/lib/service/walkers/interface-walker.d.ts +4 -4
- package/lib/service/walkers/interface-walker.js +14 -14
- package/lib/service/walkers/walker-factory.d.ts +5 -5
- package/lib/service/walkers/walker-factory.js +20 -20
- package/lib/service/walkers/walker.d.ts +19 -19
- package/lib/service/walkers/walker.js +16 -16
- package/lib/settings.d.ts +70 -64
- package/lib/settings.js +99 -88
- package/lib/settings.js.map +1 -1
- package/lib/templating/compile.d.ts +7 -0
- package/lib/templating/compile.js +98 -0
- package/lib/templating/compile.js.map +1 -0
- package/lib/templating/helpers.d.ts +2 -0
- package/lib/templating/helpers.js +18 -0
- package/lib/templating/helpers.js.map +1 -0
- package/lib/test-helpers/AnnotationBuilder.d.ts +12 -12
- package/lib/test-helpers/AnnotationBuilder.js +30 -30
- package/lib/test-helpers/ClassMirrorBuilder.d.ts +18 -18
- package/lib/test-helpers/ClassMirrorBuilder.js +53 -53
- package/lib/test-helpers/DocCommentAnnotationBuilder.d.ts +8 -8
- package/lib/test-helpers/DocCommentAnnotationBuilder.js +25 -25
- package/lib/test-helpers/DocCommentBuilder.d.ts +12 -12
- package/lib/test-helpers/DocCommentBuilder.js +37 -37
- package/lib/test-helpers/FieldMirrorBuilder.d.ts +18 -18
- package/lib/test-helpers/FieldMirrorBuilder.js +53 -53
- package/lib/test-helpers/InterfaceMirrorBuilder.d.ts +16 -0
- package/lib/test-helpers/InterfaceMirrorBuilder.js +43 -0
- package/lib/test-helpers/InterfaceMirrorBuilder.js.map +1 -0
- package/lib/test-helpers/MethodMirrorBuilder.d.ts +29 -10
- package/lib/test-helpers/MethodMirrorBuilder.js +71 -36
- package/lib/test-helpers/MethodMirrorBuilder.js.map +1 -1
- package/lib/test-helpers/SettingsBuilder.d.ts +8 -8
- package/lib/test-helpers/SettingsBuilder.js +26 -26
- package/lib/transpiler/factory.d.ts +6 -6
- package/lib/transpiler/factory.js +34 -31
- package/lib/transpiler/factory.js.map +1 -1
- package/lib/transpiler/file-container.d.ts +6 -6
- package/lib/transpiler/file-container.js +15 -15
- package/lib/transpiler/generator-choices.d.ts +1 -1
- package/lib/transpiler/generator-choices.js +2 -2
- package/lib/transpiler/markdown/class-file-generatorHelper.d.ts +11 -8
- package/lib/transpiler/markdown/class-file-generatorHelper.js +74 -55
- package/lib/transpiler/markdown/class-file-generatorHelper.js.map +1 -1
- package/lib/transpiler/markdown/docsify/docsify-docs-processor.d.ts +6 -6
- package/lib/transpiler/markdown/docsify/docsify-docs-processor.js +12 -12
- package/lib/transpiler/markdown/jekyll/jekyll-docsProcessor.d.ts +11 -11
- package/lib/transpiler/markdown/jekyll/jekyll-docsProcessor.js +50 -50
- package/lib/transpiler/markdown/markdown-transpiler-base.d.ts +11 -11
- package/lib/transpiler/markdown/markdown-transpiler-base.js +26 -23
- package/lib/transpiler/markdown/markdown-transpiler-base.js.map +1 -1
- package/lib/transpiler/markdown/plain-markdown/class-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/class-template.js +36 -0
- package/lib/transpiler/markdown/plain-markdown/class-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/constructors-partial-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/constructors-partial-template.js +39 -0
- package/lib/transpiler/markdown/plain-markdown/constructors-partial-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/documentable-partial-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/documentable-partial-template.js +25 -0
- package/lib/transpiler/markdown/plain-markdown/documentable-partial-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/enum-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/enum-template.js +15 -0
- package/lib/transpiler/markdown/plain-markdown/enum-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/fieldsPartialTemplate.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/fieldsPartialTemplate.js +24 -0
- package/lib/transpiler/markdown/plain-markdown/fieldsPartialTemplate.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/interface-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/interface-template.js +20 -0
- package/lib/transpiler/markdown/plain-markdown/interface-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/methods-partial-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/methods-partial-template.js +49 -0
- package/lib/transpiler/markdown/plain-markdown/methods-partial-template.js.map +1 -0
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.d.ts +13 -6
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.js +121 -13
- package/lib/transpiler/markdown/plain-markdown/plain-docsProcessor.js.map +1 -1
- package/lib/transpiler/markdown/plain-markdown/type-level-apex-doc-partial-template.d.ts +1 -0
- package/lib/transpiler/markdown/plain-markdown/type-level-apex-doc-partial-template.js +31 -0
- package/lib/transpiler/markdown/plain-markdown/type-level-apex-doc-partial-template.js.map +1 -0
- package/lib/transpiler/openapi/open-api-docs-processor.d.ts +13 -13
- package/lib/transpiler/openapi/open-api-docs-processor.js +77 -74
- package/lib/transpiler/openapi/open-api-docs-processor.js.map +1 -1
- package/lib/transpiler/openapi/parsers/Builder.d.ts +16 -16
- package/lib/transpiler/openapi/parsers/Builder.js +29 -29
- package/lib/transpiler/openapi/parsers/Builder.js.map +1 -1
- package/lib/transpiler/openapi/parsers/MethodParser.d.ts +20 -20
- package/lib/transpiler/openapi/parsers/MethodParser.js +189 -166
- package/lib/transpiler/openapi/parsers/MethodParser.js.map +1 -1
- package/lib/transpiler/openapi/parsers/ParameterObjectBuilder.d.ts +7 -7
- package/lib/transpiler/openapi/parsers/ParameterObjectBuilder.js +10 -10
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.d.ts +39 -39
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.js +248 -225
- package/lib/transpiler/openapi/parsers/ReferenceBuilder.js.map +1 -1
- package/lib/transpiler/openapi/parsers/RequestBodyBuilder.d.ts +10 -10
- package/lib/transpiler/openapi/parsers/RequestBodyBuilder.js +19 -19
- package/lib/transpiler/openapi/parsers/ResponsesBuilder.d.ts +7 -7
- package/lib/transpiler/openapi/parsers/ResponsesBuilder.js +21 -21
- package/lib/transpiler/processor-type-transpiler.d.ts +10 -10
- package/lib/transpiler/processor-type-transpiler.js +8 -8
- package/lib/transpiler/transpiler.d.ts +5 -5
- package/lib/transpiler/transpiler.js +29 -26
- package/lib/transpiler/transpiler.js.map +1 -1
- package/lib/util/error-logger.d.ts +8 -8
- package/lib/util/error-logger.js +89 -89
- package/lib/util/error-logger.js.map +1 -1
- package/lib/util/logger.d.ts +21 -21
- package/lib/util/logger.js +60 -57
- package/lib/util/logger.js.map +1 -1
- package/lib/util/string-utils.d.ts +2 -2
- package/lib/util/string-utils.js +14 -14
- package/package.json +79 -78
- package/src/adapters/__tests__/interface-adapter.spec.ts +76 -0
- package/src/adapters/__tests__/references.spec.ts +115 -0
- package/src/adapters/apex-types.ts +67 -0
- package/src/adapters/documentables.ts +58 -0
- package/src/adapters/fields-and-properties.ts +14 -0
- package/src/adapters/methods-and-constructors.ts +78 -0
- package/src/adapters/references.ts +113 -0
- package/src/adapters/type-utils.ts +5 -0
- package/src/adapters/types.d.ts +8 -0
- package/src/cli/generate.ts +3 -0
- package/src/model/__tests__/manifest.spec.ts +1 -0
- package/src/model/manifest.ts +3 -3
- package/src/model/markdown-file.ts +1 -1
- package/src/model/openapi/open-api-types.ts +2 -2
- package/src/service/__tests__/apex-file-reader.spec.ts +4 -4
- package/src/service/__tests__/manifest-factory.spec.ts +1 -2
- package/src/settings.ts +15 -0
- package/src/templating/__tests__/compile.spec.ts +741 -0
- package/src/templating/compile.ts +187 -0
- package/src/templating/helpers.ts +14 -0
- package/src/templating/types.d.ts +104 -0
- package/src/test-helpers/FieldMirrorBuilder.ts +1 -1
- package/src/test-helpers/InterfaceMirrorBuilder.ts +44 -0
- package/src/test-helpers/MethodMirrorBuilder.ts +46 -6
- package/src/transpiler/markdown/class-file-generatorHelper.ts +22 -2
- package/src/transpiler/markdown/plain-markdown/class-template.ts +32 -0
- package/src/transpiler/markdown/plain-markdown/constructors-partial-template.ts +35 -0
- package/src/transpiler/markdown/plain-markdown/documentable-partial-template.ts +21 -0
- package/src/transpiler/markdown/plain-markdown/enum-template.ts +11 -0
- package/src/transpiler/markdown/plain-markdown/fieldsPartialTemplate.ts +20 -0
- package/src/transpiler/markdown/plain-markdown/interface-template.ts +16 -0
- package/src/transpiler/markdown/plain-markdown/methods-partial-template.ts +45 -0
- package/src/transpiler/markdown/plain-markdown/plain-docsProcessor.ts +122 -0
- package/src/transpiler/markdown/plain-markdown/type-level-apex-doc-partial-template.ts +27 -0
- package/src/transpiler/openapi/parsers/Builder.ts +1 -1
- package/src/transpiler/openapi/parsers/MethodParser.ts +1 -1
- package/src/transpiler/openapi/parsers/ReferenceBuilder.ts +1 -1
- package/src/util/error-logger.ts +4 -4
- package/src/util/logger.ts +3 -3
- package/tsconfig.json +21 -20
- package/tslint.json +5 -5
- package/lib/model/manifest-diff.d.ts +0 -27
- package/lib/model/manifest-diff.js +0 -69
- package/lib/model/manifest-diff.js.map +0 -1
- package/src/model/__tests__/manifest-diff.spec.ts +0 -139
- package/src/model/manifest-diff.ts +0 -94
- /package/docs/{index.html → __old/index.html} +0 -0
- /package/docs/{types → __old/types}/Classes/nspc.AnotherInterface.md +0 -0
- /package/docs/{types → __old/types}/Main/nspc.GroupedClass.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.EscapedAnnotations.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.GrandparentClass.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.InterfaceWithInheritance.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.MemberGrouping.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.ParentClass.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference1.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference2.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference3.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference4.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference5.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference6.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.Reference7.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.SampleClassWithoutModifier.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.SampleRestResource.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.SampleRestResourceWithInnerClass.md +0 -0
- /package/docs/{types → __old/types}/Misc-Group/nspc.SampleRestResourceWithoutApexDocs.md +0 -0
- /package/docs/{types → __old/types}/README.md +0 -0
- /package/docs/{types → __old/types}/Sample-Interfaces/nspc.SampleInterface.md +0 -0
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
# nspc.ChildClass
|
|
2
|
-
|
|
3
|
-
Some desc
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
**Inheritance**
|
|
7
|
-
|
|
8
|
-
[nspc.GrandparentClass](types/Misc-Group/nspc.GrandparentClass.md)
|
|
9
|
-
>
|
|
10
|
-
[nspc.ParentClass](types/Misc-Group/nspc.ParentClass.md)
|
|
11
|
-
>
|
|
12
|
-
ChildClass
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
**Implemented types**
|
|
16
|
-
|
|
17
|
-
[nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
**Group** Classes
|
|
21
|
-
|
|
22
|
-
## Fields
|
|
23
|
-
|
|
24
|
-
### `private aPrivateString` → `String`
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### `private privateStringFromChild` → `String`
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### `protected protectedGrandParentField` → `String`
|
|
31
|
-
|
|
32
|
-
*Inherited*
|
|
33
|
-
|
|
34
|
-
### `protected protectedStringFromParent` → `String`
|
|
35
|
-
|
|
36
|
-
*Inherited*
|
|
37
|
-
|
|
38
|
-
This is a protected string, use carefully.
|
|
39
|
-
|
|
40
|
-
### `public publicStringFromParent` → `String`
|
|
41
|
-
|
|
42
|
-
*Inherited*
|
|
43
|
-
|
|
44
|
-
---
|
|
45
|
-
## Properties
|
|
46
|
-
|
|
47
|
-
### `protected AProp` → `String`
|
|
48
|
-
|
|
49
|
-
*Inherited*
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
## Methods
|
|
53
|
-
### `public void doSomething()`
|
|
54
|
-
### `public void execute()`
|
|
55
|
-
|
|
56
|
-
Executes the command.
|
|
57
|
-
|
|
58
|
-
### `public String getValue()`
|
|
59
|
-
|
|
60
|
-
Returns a value based on the executed command.
|
|
61
|
-
|
|
62
|
-
#### Returns
|
|
63
|
-
|
|
64
|
-
|Type|Description|
|
|
65
|
-
|---|---|
|
|
66
|
-
|`String`|The value|
|
|
67
|
-
|
|
68
|
-
### `public virtual String overridableMethod()`
|
|
69
|
-
|
|
70
|
-
*Inherited*
|
|
71
|
-
|
|
72
|
-
### `public override String overridableMethodOverridden()`
|
|
73
|
-
|
|
74
|
-
This method was overridden.
|
|
75
|
-
|
|
76
|
-
#### Returns
|
|
77
|
-
|
|
78
|
-
|Type|Description|
|
|
79
|
-
|---|---|
|
|
80
|
-
|`String`|A String.|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
```mermaid
|
|
84
|
-
sequenceDiagram
|
|
85
|
-
participant dotcom
|
|
86
|
-
participant iframe
|
|
87
|
-
participant viewscreen
|
|
88
|
-
dotcom->>iframe: loads html w/ iframe url
|
|
89
|
-
iframe->>viewscreen: request template
|
|
90
|
-
viewscreen->>iframe: html & javascript
|
|
91
|
-
iframe->>dotcom: iframe ready
|
|
92
|
-
dotcom->>iframe: set mermaid data on iframe
|
|
93
|
-
iframe->>iframe: render mermaid
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
---
|
|
1
|
+
# nspc.ChildClass
|
|
2
|
+
|
|
3
|
+
Some desc
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
**Inheritance**
|
|
7
|
+
|
|
8
|
+
[nspc.GrandparentClass](types/Misc-Group/nspc.GrandparentClass.md)
|
|
9
|
+
>
|
|
10
|
+
[nspc.ParentClass](types/Misc-Group/nspc.ParentClass.md)
|
|
11
|
+
>
|
|
12
|
+
ChildClass
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
**Implemented types**
|
|
16
|
+
|
|
17
|
+
[nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
**Group** Classes
|
|
21
|
+
|
|
22
|
+
## Fields
|
|
23
|
+
|
|
24
|
+
### `private aPrivateString` → `String`
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### `private privateStringFromChild` → `String`
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### `protected protectedGrandParentField` → `String`
|
|
31
|
+
|
|
32
|
+
*Inherited*
|
|
33
|
+
|
|
34
|
+
### `protected protectedStringFromParent` → `String`
|
|
35
|
+
|
|
36
|
+
*Inherited*
|
|
37
|
+
|
|
38
|
+
This is a protected string, use carefully.
|
|
39
|
+
|
|
40
|
+
### `public publicStringFromParent` → `String`
|
|
41
|
+
|
|
42
|
+
*Inherited*
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
## Properties
|
|
46
|
+
|
|
47
|
+
### `protected AProp` → `String`
|
|
48
|
+
|
|
49
|
+
*Inherited*
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
## Methods
|
|
53
|
+
### `public void doSomething()`
|
|
54
|
+
### `public void execute()`
|
|
55
|
+
|
|
56
|
+
Executes the command.
|
|
57
|
+
|
|
58
|
+
### `public String getValue()`
|
|
59
|
+
|
|
60
|
+
Returns a value based on the executed command.
|
|
61
|
+
|
|
62
|
+
#### Returns
|
|
63
|
+
|
|
64
|
+
|Type|Description|
|
|
65
|
+
|---|---|
|
|
66
|
+
|`String`|The value|
|
|
67
|
+
|
|
68
|
+
### `public virtual String overridableMethod()`
|
|
69
|
+
|
|
70
|
+
*Inherited*
|
|
71
|
+
|
|
72
|
+
### `public override String overridableMethodOverridden()`
|
|
73
|
+
|
|
74
|
+
This method was overridden.
|
|
75
|
+
|
|
76
|
+
#### Returns
|
|
77
|
+
|
|
78
|
+
|Type|Description|
|
|
79
|
+
|---|---|
|
|
80
|
+
|`String`|A String.|
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
```mermaid
|
|
84
|
+
sequenceDiagram
|
|
85
|
+
participant dotcom
|
|
86
|
+
participant iframe
|
|
87
|
+
participant viewscreen
|
|
88
|
+
dotcom->>iframe: loads html w/ iframe url
|
|
89
|
+
iframe->>viewscreen: request template
|
|
90
|
+
viewscreen->>iframe: html & javascript
|
|
91
|
+
iframe->>dotcom: iframe ready
|
|
92
|
+
dotcom->>iframe: set mermaid data on iframe
|
|
93
|
+
iframe->>iframe: render mermaid
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
---
|
|
@@ -1,189 +1,189 @@
|
|
|
1
|
-
# virtual nspc.SampleClass
|
|
2
|
-
|
|
3
|
-
`NAMESPACEACCESSIBLE`
|
|
4
|
-
|
|
5
|
-
This is a class description. This class relates to [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
6
|
-
But this [ClassThatDoesNotExist](ClassThatDoesNotExist) does not exist.
|
|
7
|
-
You can also link using this syntax [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
**Group** Main
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
**CustomAnnotation** A Custom annotation
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
**Author** Cesar Parra
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
**See** [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
20
|
-
|
|
21
|
-
## Constructors
|
|
22
|
-
### My Super Group
|
|
23
|
-
##### `public SampleClass()`
|
|
24
|
-
|
|
25
|
-
`NAMESPACEACCESSIBLE`
|
|
26
|
-
|
|
27
|
-
Constructs a SampleClass without any arguments. This relates to [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
28
|
-
|
|
29
|
-
###### Throws
|
|
30
|
-
|
|
31
|
-
|Exception|Description|
|
|
32
|
-
|---|---|
|
|
33
|
-
|`ExcName`|some exception|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
**CustomAnnotation** A Custom method annotation
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
**See** [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
40
|
-
|
|
41
|
-
###### Example
|
|
42
|
-
```apex
|
|
43
|
-
// Example
|
|
44
|
-
SampleClass sampleInstance = new SampleClass();
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
---
|
|
49
|
-
### Other
|
|
50
|
-
##### `public SampleClass(String argument1, String argument2)`
|
|
51
|
-
|
|
52
|
-
Constructs a SampleClass with an argument.
|
|
53
|
-
|
|
54
|
-
###### Parameters
|
|
55
|
-
|
|
56
|
-
|Param|Description|
|
|
57
|
-
|---|---|
|
|
58
|
-
|`argument1`|Argument1 definition|
|
|
59
|
-
|`argument2`|Argument2 definition|
|
|
60
|
-
|
|
61
|
-
---
|
|
62
|
-
## Fields
|
|
63
|
-
### Common Constants
|
|
64
|
-
|
|
65
|
-
* `public A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
66
|
-
* `public ANOTHER_CONSTANT` → `String`
|
|
67
|
-
* `public listOfStrings` → `List<String>`
|
|
68
|
-
---
|
|
69
|
-
### 'General' Constants
|
|
70
|
-
|
|
71
|
-
* `public GENERAL_A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
72
|
-
* `public GENERAL_ANOTHER_CONSTANT` → `String`
|
|
73
|
-
---
|
|
74
|
-
### Other
|
|
75
|
-
|
|
76
|
-
* `private somePrivateStuff` → `String`
|
|
77
|
-
---
|
|
78
|
-
### Other variables
|
|
79
|
-
|
|
80
|
-
* `public someVariable` → `String`
|
|
81
|
-
---
|
|
82
|
-
## Properties
|
|
83
|
-
|
|
84
|
-
### `public AnotherProp` → `Decimal`
|
|
85
|
-
|
|
86
|
-
`AURAENABLED`
|
|
87
|
-
|
|
88
|
-
This is a Decimal property.
|
|
89
|
-
|
|
90
|
-
### `public MyProp` → `String`
|
|
91
|
-
|
|
92
|
-
`AURAENABLED`
|
|
93
|
-
`DEPRECATED`
|
|
94
|
-
|
|
95
|
-
This is a String property.
|
|
96
|
-
|
|
97
|
-
---
|
|
98
|
-
## Methods
|
|
99
|
-
### A method group
|
|
100
|
-
##### `public static String anotherSampleMethod(String arg1)`
|
|
101
|
-
|
|
102
|
-
Something here
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
**Arg1** The arg1 description
|
|
106
|
-
|
|
107
|
-
##### `public static String sampleMethod(String argument1, String argument2)`
|
|
108
|
-
|
|
109
|
-
`NAMESPACEACCESSIBLE`
|
|
110
|
-
|
|
111
|
-
Executes commands based on the passed in argument.
|
|
112
|
-
|
|
113
|
-
###### Parameters
|
|
114
|
-
|
|
115
|
-
|Param|Description|
|
|
116
|
-
|---|---|
|
|
117
|
-
|`argument1`|Argument1 to debug|
|
|
118
|
-
|`argument2`|Argument2 to debug|
|
|
119
|
-
|
|
120
|
-
###### Returns
|
|
121
|
-
|
|
122
|
-
|Type|Description|
|
|
123
|
-
|---|---|
|
|
124
|
-
|`String`|Empty string|
|
|
125
|
-
|
|
126
|
-
###### Example
|
|
127
|
-
```apex
|
|
128
|
-
String result = SampleClass.testMethod();
|
|
129
|
-
System.debug(result);
|
|
130
|
-
```
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
##### `public static Map<Id,List<String>> yetAnotherSampleMethod(String arg1)`
|
|
134
|
-
---
|
|
135
|
-
### Other
|
|
136
|
-
##### `public static void call()`
|
|
137
|
-
|
|
138
|
-
Calls the method. This methods allows you to call it.
|
|
139
|
-
|
|
140
|
-
---
|
|
141
|
-
## Enums
|
|
142
|
-
### InnerEnum
|
|
143
|
-
|
|
144
|
-
`NAMESPACEACCESSIBLE`
|
|
145
|
-
|
|
146
|
-
This is a namespace accessible enum
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
---
|
|
150
|
-
## Classes
|
|
151
|
-
### AnotherInnerClass
|
|
152
|
-
|
|
153
|
-
Inner class belonging to SampleClass.
|
|
154
|
-
|
|
155
|
-
#### Properties
|
|
156
|
-
|
|
157
|
-
##### `public InnerProp` → `String`
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
Description of the inner property.
|
|
161
|
-
|
|
162
|
-
---
|
|
163
|
-
#### Methods
|
|
164
|
-
##### `public void innerMethod()`
|
|
165
|
-
|
|
166
|
-
Executes from the inner class.
|
|
167
|
-
|
|
168
|
-
---
|
|
169
|
-
|
|
170
|
-
### InnerClass
|
|
171
|
-
|
|
172
|
-
Inner class belonging to SampleClass.
|
|
173
|
-
|
|
174
|
-
#### Properties
|
|
175
|
-
|
|
176
|
-
##### `public InnerProp` → `String`
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
Description of the inner property.
|
|
180
|
-
|
|
181
|
-
---
|
|
182
|
-
#### Methods
|
|
183
|
-
##### `public void innerMethod()`
|
|
184
|
-
|
|
185
|
-
Executes from the inner class.
|
|
186
|
-
|
|
187
|
-
---
|
|
188
|
-
|
|
189
|
-
---
|
|
1
|
+
# virtual nspc.SampleClass
|
|
2
|
+
|
|
3
|
+
`NAMESPACEACCESSIBLE`
|
|
4
|
+
|
|
5
|
+
This is a class description. This class relates to [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
6
|
+
But this [ClassThatDoesNotExist](ClassThatDoesNotExist) does not exist.
|
|
7
|
+
You can also link using this syntax [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
**Group** Main
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
**CustomAnnotation** A Custom annotation
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
**Author** Cesar Parra
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
**See** [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
20
|
+
|
|
21
|
+
## Constructors
|
|
22
|
+
### My Super Group
|
|
23
|
+
##### `public SampleClass()`
|
|
24
|
+
|
|
25
|
+
`NAMESPACEACCESSIBLE`
|
|
26
|
+
|
|
27
|
+
Constructs a SampleClass without any arguments. This relates to [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
28
|
+
|
|
29
|
+
###### Throws
|
|
30
|
+
|
|
31
|
+
|Exception|Description|
|
|
32
|
+
|---|---|
|
|
33
|
+
|`ExcName`|some exception|
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
**CustomAnnotation** A Custom method annotation
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
**See** [nspc.SampleInterface](types/Sample-Interfaces/nspc.SampleInterface.md)
|
|
40
|
+
|
|
41
|
+
###### Example
|
|
42
|
+
```apex
|
|
43
|
+
// Example
|
|
44
|
+
SampleClass sampleInstance = new SampleClass();
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
### Other
|
|
50
|
+
##### `public SampleClass(String argument1, String argument2)`
|
|
51
|
+
|
|
52
|
+
Constructs a SampleClass with an argument.
|
|
53
|
+
|
|
54
|
+
###### Parameters
|
|
55
|
+
|
|
56
|
+
|Param|Description|
|
|
57
|
+
|---|---|
|
|
58
|
+
|`argument1`|Argument1 definition|
|
|
59
|
+
|`argument2`|Argument2 definition|
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
## Fields
|
|
63
|
+
### Common Constants
|
|
64
|
+
|
|
65
|
+
* `public A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
66
|
+
* `public ANOTHER_CONSTANT` → `String`
|
|
67
|
+
* `public listOfStrings` → `List<String>`
|
|
68
|
+
---
|
|
69
|
+
### 'General' Constants
|
|
70
|
+
|
|
71
|
+
* `public GENERAL_A_CONSTANT` → `String` [`NAMESPACEACCESSIBLE` ] - This is a constant.
|
|
72
|
+
* `public GENERAL_ANOTHER_CONSTANT` → `String`
|
|
73
|
+
---
|
|
74
|
+
### Other
|
|
75
|
+
|
|
76
|
+
* `private somePrivateStuff` → `String`
|
|
77
|
+
---
|
|
78
|
+
### Other variables
|
|
79
|
+
|
|
80
|
+
* `public someVariable` → `String`
|
|
81
|
+
---
|
|
82
|
+
## Properties
|
|
83
|
+
|
|
84
|
+
### `public AnotherProp` → `Decimal`
|
|
85
|
+
|
|
86
|
+
`AURAENABLED`
|
|
87
|
+
|
|
88
|
+
This is a Decimal property.
|
|
89
|
+
|
|
90
|
+
### `public MyProp` → `String`
|
|
91
|
+
|
|
92
|
+
`AURAENABLED`
|
|
93
|
+
`DEPRECATED`
|
|
94
|
+
|
|
95
|
+
This is a String property.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
## Methods
|
|
99
|
+
### A method group
|
|
100
|
+
##### `public static String anotherSampleMethod(String arg1)`
|
|
101
|
+
|
|
102
|
+
Something here
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
**Arg1** The arg1 description
|
|
106
|
+
|
|
107
|
+
##### `public static String sampleMethod(String argument1, String argument2)`
|
|
108
|
+
|
|
109
|
+
`NAMESPACEACCESSIBLE`
|
|
110
|
+
|
|
111
|
+
Executes commands based on the passed in argument.
|
|
112
|
+
|
|
113
|
+
###### Parameters
|
|
114
|
+
|
|
115
|
+
|Param|Description|
|
|
116
|
+
|---|---|
|
|
117
|
+
|`argument1`|Argument1 to debug|
|
|
118
|
+
|`argument2`|Argument2 to debug|
|
|
119
|
+
|
|
120
|
+
###### Returns
|
|
121
|
+
|
|
122
|
+
|Type|Description|
|
|
123
|
+
|---|---|
|
|
124
|
+
|`String`|Empty string|
|
|
125
|
+
|
|
126
|
+
###### Example
|
|
127
|
+
```apex
|
|
128
|
+
String result = SampleClass.testMethod();
|
|
129
|
+
System.debug(result);
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
##### `public static Map<Id,List<String>> yetAnotherSampleMethod(String arg1)`
|
|
134
|
+
---
|
|
135
|
+
### Other
|
|
136
|
+
##### `public static void call()`
|
|
137
|
+
|
|
138
|
+
Calls the method. This methods allows you to call it.
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
## Enums
|
|
142
|
+
### InnerEnum
|
|
143
|
+
|
|
144
|
+
`NAMESPACEACCESSIBLE`
|
|
145
|
+
|
|
146
|
+
This is a namespace accessible enum
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
## Classes
|
|
151
|
+
### AnotherInnerClass
|
|
152
|
+
|
|
153
|
+
Inner class belonging to SampleClass.
|
|
154
|
+
|
|
155
|
+
#### Properties
|
|
156
|
+
|
|
157
|
+
##### `public InnerProp` → `String`
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
Description of the inner property.
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
#### Methods
|
|
164
|
+
##### `public void innerMethod()`
|
|
165
|
+
|
|
166
|
+
Executes from the inner class.
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
### InnerClass
|
|
171
|
+
|
|
172
|
+
Inner class belonging to SampleClass.
|
|
173
|
+
|
|
174
|
+
#### Properties
|
|
175
|
+
|
|
176
|
+
##### `public InnerProp` → `String`
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
Description of the inner property.
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
#### Methods
|
|
183
|
+
##### `public void innerMethod()`
|
|
184
|
+
|
|
185
|
+
Executes from the inner class.
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
---
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @description Some desc
|
|
3
|
-
* @group Classes
|
|
4
|
-
* @mermaid
|
|
5
|
-
* sequenceDiagram
|
|
6
|
-
* participant dotcom
|
|
7
|
-
* participant iframe
|
|
8
|
-
* participant viewscreen
|
|
9
|
-
* dotcom->>iframe: loads html w/ iframe url
|
|
10
|
-
* iframe->>viewscreen: request template
|
|
11
|
-
* viewscreen->>iframe: html & javascript
|
|
12
|
-
* iframe->>dotcom: iframe ready
|
|
13
|
-
* dotcom->>iframe: set mermaid data on iframe
|
|
14
|
-
* iframe->>iframe: render mermaid
|
|
15
|
-
*/
|
|
16
|
-
public interface AnotherInterface{}
|
|
1
|
+
/**
|
|
2
|
+
* @description Some desc
|
|
3
|
+
* @group Classes
|
|
4
|
+
* @mermaid
|
|
5
|
+
* sequenceDiagram
|
|
6
|
+
* participant dotcom
|
|
7
|
+
* participant iframe
|
|
8
|
+
* participant viewscreen
|
|
9
|
+
* dotcom->>iframe: loads html w/ iframe url
|
|
10
|
+
* iframe->>viewscreen: request template
|
|
11
|
+
* viewscreen->>iframe: html & javascript
|
|
12
|
+
* iframe->>dotcom: iframe ready
|
|
13
|
+
* dotcom->>iframe: set mermaid data on iframe
|
|
14
|
+
* iframe->>iframe: render mermaid
|
|
15
|
+
*/
|
|
16
|
+
public interface AnotherInterface{}
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @description Some desc
|
|
3
|
-
* @group Classes
|
|
4
|
-
*/
|
|
5
|
-
public class ChildClass extends ParentClass implements SampleInterface {
|
|
6
|
-
private String privateStringFromChild;
|
|
7
|
-
private String aPrivateString;
|
|
8
|
-
|
|
9
|
-
public void doSomething() {
|
|
10
|
-
System.debug('Do something');
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* @description This method was overridden.
|
|
15
|
-
* @return A String.
|
|
16
|
-
* @mermaid
|
|
17
|
-
* sequenceDiagram
|
|
18
|
-
* participant dotcom
|
|
19
|
-
* participant iframe
|
|
20
|
-
* participant viewscreen
|
|
21
|
-
* dotcom->>iframe: loads html w/ iframe url
|
|
22
|
-
* iframe->>viewscreen: request template
|
|
23
|
-
* viewscreen->>iframe: html & javascript
|
|
24
|
-
* iframe->>dotcom: iframe ready
|
|
25
|
-
* dotcom->>iframe: set mermaid data on iframe
|
|
26
|
-
* iframe->>iframe: render mermaid
|
|
27
|
-
*/
|
|
28
|
-
public override String overridableMethodOverridden() {
|
|
29
|
-
return null ?? '';
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* @description Executes the command.
|
|
34
|
-
*/
|
|
35
|
-
public void execute();
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* @description Returns a value based on the executed command.
|
|
39
|
-
* @return The value
|
|
40
|
-
*/
|
|
41
|
-
public String getValue();
|
|
42
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* @description Some desc
|
|
3
|
+
* @group Classes
|
|
4
|
+
*/
|
|
5
|
+
public class ChildClass extends ParentClass implements SampleInterface {
|
|
6
|
+
private String privateStringFromChild;
|
|
7
|
+
private String aPrivateString;
|
|
8
|
+
|
|
9
|
+
public void doSomething() {
|
|
10
|
+
System.debug('Do something');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @description This method was overridden.
|
|
15
|
+
* @return A String.
|
|
16
|
+
* @mermaid
|
|
17
|
+
* sequenceDiagram
|
|
18
|
+
* participant dotcom
|
|
19
|
+
* participant iframe
|
|
20
|
+
* participant viewscreen
|
|
21
|
+
* dotcom->>iframe: loads html w/ iframe url
|
|
22
|
+
* iframe->>viewscreen: request template
|
|
23
|
+
* viewscreen->>iframe: html & javascript
|
|
24
|
+
* iframe->>dotcom: iframe ready
|
|
25
|
+
* dotcom->>iframe: set mermaid data on iframe
|
|
26
|
+
* iframe->>iframe: render mermaid
|
|
27
|
+
*/
|
|
28
|
+
public override String overridableMethodOverridden() {
|
|
29
|
+
return null ?? '';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @description Executes the command.
|
|
34
|
+
*/
|
|
35
|
+
public void execute();
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @description Returns a value based on the executed command.
|
|
39
|
+
* @return The value
|
|
40
|
+
*/
|
|
41
|
+
public String getValue();
|
|
42
|
+
}
|