├── .idea ├── .gitignore ├── .name ├── IcApexDoc.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ ├── IC2.xml │ ├── IcApexDoc.xml │ └── profiles_settings.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── ACKNOWLEDGEMENTS.txt ├── LICENSE.txt ├── README.md ├── RELEASE-NOTES.md ├── images ├── Groups.png ├── Index.png ├── Overview.png └── TopLevelDeclaration.png └── validator ├── apexdoc_validator.schema.json └── apexdoc_validator_example.json /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | IcApexDoc -------------------------------------------------------------------------------- /.idea/IcApexDoc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/IcApexDoc.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/IC2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/copyright/IC2.xml -------------------------------------------------------------------------------- /.idea/copyright/IcApexDoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/copyright/IcApexDoc.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/ACKNOWLEDGEMENTS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /images/Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/images/Groups.png -------------------------------------------------------------------------------- /images/Index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/images/Index.png -------------------------------------------------------------------------------- /images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/images/Overview.png -------------------------------------------------------------------------------- /images/TopLevelDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/images/TopLevelDeclaration.png -------------------------------------------------------------------------------- /validator/apexdoc_validator.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/validator/apexdoc_validator.schema.json -------------------------------------------------------------------------------- /validator/apexdoc_validator_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCWells72/IcApexDoc/HEAD/validator/apexdoc_validator_example.json --------------------------------------------------------------------------------