├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.yml
│ ├── check.md
│ ├── check_false.md
│ ├── check_not_found.md
│ ├── config.yml
│ ├── documentation.md
│ └── feature_request.yml
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── build.yml
│ ├── ci-build.yml
│ ├── fork-pull.yml
│ └── release.yml
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE.md
├── NOTICE.md
├── README.md
├── bom
├── .project
├── .settings
│ └── org.eclipse.core.resources.prefs
├── html
│ ├── css
│ │ └── prism.css
│ ├── footer.html
│ ├── header.html
│ └── js
│ │ └── prism.js
├── pom.xml
└── set_version.sh
├── bundles
├── com.e1c.v8codestyle.autosort.ui
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── autosort
│ │ └── ui
│ │ │ └── properties
│ │ │ ├── AutoSortPropertyPage.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ └── internal
│ │ └── autosort
│ │ └── ui
│ │ ├── ExternalDependenciesModule.java
│ │ ├── MdSortPreferenceChangeNotifier.java
│ │ ├── Messages.java
│ │ ├── UiExecutableExtensionFactory.java
│ │ ├── UiPlugin.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.autosort
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── autosort
│ │ ├── AutoSortPreferences.java
│ │ ├── ISortService.java
│ │ ├── ListConstants.java
│ │ └── SortItem.java
│ │ └── internal
│ │ └── autosort
│ │ ├── AutoSortPlugin.java
│ │ ├── AutoSortProjectOptionProvider.java
│ │ ├── ExecutableExtensionFactory.java
│ │ ├── ExternalDependenciesModule.java
│ │ ├── Messages.java
│ │ ├── ServiceModule.java
│ │ ├── SortBmTask.java
│ │ ├── SortJob.java
│ │ ├── SortService.java
│ │ ├── cli
│ │ ├── Messages.java
│ │ ├── SortCommand.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.bsl.ui
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── icons
│ │ ├── BslDocComment.png
│ │ ├── BslDocComment@2x.png
│ │ └── obj16
│ │ │ ├── attribute.png
│ │ │ ├── attribute@2x.png
│ │ │ ├── attribute_dark.png
│ │ │ ├── attribute_dark@2x.png
│ │ │ ├── description.png
│ │ │ ├── description@2x.png
│ │ │ ├── description_dark.png
│ │ │ ├── description_dark@2x.png
│ │ │ ├── link.png
│ │ │ ├── link@2x.png
│ │ │ ├── link_dark.png
│ │ │ ├── link_dark@2x.png
│ │ │ ├── parameters_section.png
│ │ │ ├── parameters_section@2x.png
│ │ │ ├── parameters_section_dark.png
│ │ │ ├── parameters_section_dark@2x.png
│ │ │ ├── text.png
│ │ │ ├── text@2x.png
│ │ │ ├── text_dark.png
│ │ │ ├── text_dark@2x.png
│ │ │ ├── type.png
│ │ │ ├── type@2x.png
│ │ │ ├── type_dark.png
│ │ │ ├── type_dark@2x.png
│ │ │ ├── type_section.png
│ │ │ ├── type_section@2x.png
│ │ │ ├── type_section_dark.png
│ │ │ └── type_section_dark@2x.png
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── bsl
│ │ └── ui
│ │ │ └── qfix
│ │ │ ├── CommonModuleNamedSelfReferenceFix.java
│ │ │ ├── ConvertFunctionToProcedureFix.java
│ │ │ ├── FormSelfReferenceOutdatedFix.java
│ │ │ ├── ManagerModuleNamedSelfReferenceFix.java
│ │ │ ├── Messages.java
│ │ │ ├── OpenBslDocCommentViewFix.java
│ │ │ ├── QuickFixMethodsHelper.java
│ │ │ ├── SelfReferenceFix.java
│ │ │ ├── ServerExecutionSafeModeFix.java
│ │ │ ├── UndefinedFunctionFix.java
│ │ │ ├── UndefinedMethodFix.java
│ │ │ ├── UndefinedVariableFix.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ └── internal
│ │ └── bsl
│ │ └── ui
│ │ ├── ExecutableExtensionFactory.java
│ │ ├── ExternalDependenciesModule.java
│ │ ├── MultiCheckFixRegistrator.java
│ │ ├── SharedImages.java
│ │ ├── UiPlugin.java
│ │ ├── handlers
│ │ ├── AddStrictTypeAnnotationHandler.java
│ │ ├── AddStrictTypeAnnotationModuleEditorHandler.java
│ │ ├── FormatDocCommentModuleEditorHandler.java
│ │ ├── Messages.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ ├── preferences
│ │ ├── Messages.java
│ │ ├── ModuleStructurePreferencePage.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ ├── properties
│ │ ├── Messages.java
│ │ ├── ModuleStructurePropertyPage.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ ├── services
│ │ ├── BslModuleOffsets.java
│ │ ├── BslModuleRegionsInfo.java
│ │ └── BslModuleRegionsInfoService.java
│ │ ├── views
│ │ ├── BslDocCommentSelectionListener.java
│ │ ├── BslDocCommentView.java
│ │ ├── BslDocumentationCommentContentProvider.java
│ │ ├── Messages.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ └── wizard
│ │ ├── AbstractModuleNewWizardRelatedModelsFactory.java
│ │ ├── ModuleStrictTypesNewWizardRelatedModelsFactory.java
│ │ └── ModuleStructureNewWizardRelatedModelsFactory.java
├── com.e1c.v8codestyle.bsl
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── check.descriptions
│ │ └── .gitignore
│ ├── markdown
│ │ ├── begin-transaction.md
│ │ ├── bsl-canonical-pragma.md
│ │ ├── bsl-nstr-string-literal-format.md
│ │ ├── bsl-variable-name-invalid.md
│ │ ├── change-and-validate-instead-of-around.md
│ │ ├── code-after-async-call.md
│ │ ├── commit-transaction.md
│ │ ├── common-module-missing-api.md
│ │ ├── common-module-named-self-reference.md
│ │ ├── constructor-function-return-section.md
│ │ ├── data-exchange-load.md
│ │ ├── deprecated-procedure-outside-deprecated-region.md
│ │ ├── doc-comment-collection-item-type.md
│ │ ├── doc-comment-complex-type-with-link.md
│ │ ├── doc-comment-description-ends-on-dot.md
│ │ ├── doc-comment-export-function-return-section.md
│ │ ├── doc-comment-export-procedure-description-section.md
│ │ ├── doc-comment-field-in-description-suggestion.md
│ │ ├── doc-comment-field-name.md
│ │ ├── doc-comment-field-type-strict.md
│ │ ├── doc-comment-field-type.md
│ │ ├── doc-comment-parameter-in-description-suggestion.md
│ │ ├── doc-comment-parameter-section.md
│ │ ├── doc-comment-procedure-return-section.md
│ │ ├── doc-comment-redundant-parameter-section.md
│ │ ├── doc-comment-ref-link.md
│ │ ├── doc-comment-return-section-type.md
│ │ ├── doc-comment-type.md
│ │ ├── doc-comment-use-minus.md
│ │ ├── dynamic-access-method-not-found.md
│ │ ├── empty-except-statement.md
│ │ ├── event-heandler-boolean-param.md
│ │ ├── export-method-in-command-form-module.md
│ │ ├── export-procedure-missing-comment.md
│ │ ├── extension-method-prefix.md
│ │ ├── extension-variable-prefix.md
│ │ ├── form-module-missing-pragma.md
│ │ ├── form-module-pragma.md
│ │ ├── form-self-reference.md
│ │ ├── function-return-value-type.md
│ │ ├── invocation-form-event-handler.md
│ │ ├── invocation-parameter-type-intersect.md
│ │ ├── lock-out-of-try.md
│ │ ├── manager-module-named-self-reference.md
│ │ ├── method-isinrole-role-exist.md
│ │ ├── method-optional-parameter-before-required.md
│ │ ├── method-param-value-type.md
│ │ ├── method-too-many-params.md
│ │ ├── missing-temporary-file-deletion.md
│ │ ├── module-accessibility-at-client.md
│ │ ├── module-attachable-event-handler-name.md
│ │ ├── module-consecutive-blank-lines.md
│ │ ├── module-empty-method.md
│ │ ├── module-region-empty.md
│ │ ├── module-self-reference.md
│ │ ├── module-structure-event-regions.md
│ │ ├── module-structure-form-event-regions.md
│ │ ├── module-structure-init-code-in-region.md
│ │ ├── module-structure-method-in-regions.md
│ │ ├── module-structure-top-region.md
│ │ ├── module-structure-var-in-region.md
│ │ ├── module-undefined-function.md
│ │ ├── module-undefined-method.md
│ │ ├── module-undefined-variable.md
│ │ ├── module-unused-local-variable.md
│ │ ├── module-unused-method.md
│ │ ├── new-color.md
│ │ ├── new-font.md
│ │ ├── notify-description-to-server-procedure.md
│ │ ├── object-module-export-variable.md
│ │ ├── optional-form-parameter-access.md
│ │ ├── property-return-type.md
│ │ ├── public-method-caching.md
│ │ ├── query-in-loop.md
│ │ ├── reading-attribute-from-database.md
│ │ ├── redundant-export-method.md
│ │ ├── rollback-transaction.md
│ │ ├── ru
│ │ │ ├── begin-transaction.md
│ │ │ ├── bsl-canonical-pragma.md
│ │ │ ├── bsl-nstr-string-literal-format.md
│ │ │ ├── bsl-variable-name-invalid.md
│ │ │ ├── change-and-validate-instead-of-around.md
│ │ │ ├── code-after-async-call.md
│ │ │ ├── commit-transaction.md
│ │ │ ├── common-module-missing-api.md
│ │ │ ├── common-module-named-self-reference.md
│ │ │ ├── constructor-function-return-section.md
│ │ │ ├── data-exchange-load.md
│ │ │ ├── deprecated-procedure-outside-deprecated-region.md
│ │ │ ├── doc-comment-collection-item-type.md
│ │ │ ├── doc-comment-complex-type-with-link.md
│ │ │ ├── doc-comment-description-ends-on-dot.md
│ │ │ ├── doc-comment-export-function-return-section.md
│ │ │ ├── doc-comment-export-procedure-description-section.md
│ │ │ ├── doc-comment-field-in-description-suggestion.md
│ │ │ ├── doc-comment-field-name.md
│ │ │ ├── doc-comment-field-type-strict.md
│ │ │ ├── doc-comment-field-type.md
│ │ │ ├── doc-comment-parameter-in-description-suggestion.md
│ │ │ ├── doc-comment-parameter-section.md
│ │ │ ├── doc-comment-procedure-return-section.md
│ │ │ ├── doc-comment-redundant-parameter-section.md
│ │ │ ├── doc-comment-ref-link.md
│ │ │ ├── doc-comment-return-section-type.md
│ │ │ ├── doc-comment-type.md
│ │ │ ├── doc-comment-use-minus.md
│ │ │ ├── dynamic-access-method-not-found.md
│ │ │ ├── empty-except-statement.md
│ │ │ ├── event-heandler-boolean-param.md
│ │ │ ├── export-method-in-command-form-module.md
│ │ │ ├── export-procedure-missing-comment.md
│ │ │ ├── extension-method-prefix.md
│ │ │ ├── extension-variable-prefix.md
│ │ │ ├── form-module-missing-pragma.md
│ │ │ ├── form-module-pragma.md
│ │ │ ├── form-self-reference.md
│ │ │ ├── function-return-value-type.md
│ │ │ ├── invocation-form-event-handler.md
│ │ │ ├── invocation-parameter-type-intersect.md
│ │ │ ├── lock-out-of-try.md
│ │ │ ├── manager-module-named-self-reference.md
│ │ │ ├── method-isinrole-role-exist.md
│ │ │ ├── method-optional-parameter-before-required.md
│ │ │ ├── method-param-value-type.md
│ │ │ ├── method-too-many-params.md
│ │ │ ├── missing-temporary-file-deletion.md
│ │ │ ├── module-accessibility-at-client.md
│ │ │ ├── module-attachable-event-handler-name.md
│ │ │ ├── module-consecutive-blank-lines.md
│ │ │ ├── module-empty-method.md
│ │ │ ├── module-region-empty.md
│ │ │ ├── module-self-reference.md
│ │ │ ├── module-structure-event-regions.md
│ │ │ ├── module-structure-form-event-regions.md
│ │ │ ├── module-structure-init-code-in-region.md
│ │ │ ├── module-structure-method-in-regions.md
│ │ │ ├── module-structure-top-region.md
│ │ │ ├── module-structure-var-in-region.md
│ │ │ ├── module-undefined-function.md
│ │ │ ├── module-undefined-method.md
│ │ │ ├── module-undefined-variable.md
│ │ │ ├── module-unused-local-variable.md
│ │ │ ├── module-unused-method.md
│ │ │ ├── new-color.md
│ │ │ ├── new-font.md
│ │ │ ├── notify-description-to-server-procedure.md
│ │ │ ├── object-module-export-variable.md
│ │ │ ├── optional-form-parameter-access.md
│ │ │ ├── property-return-type.md
│ │ │ ├── public-method-caching.md
│ │ │ ├── query-in-loop.md
│ │ │ ├── reading-attribute-from-database.md
│ │ │ ├── redundant-export-method.md
│ │ │ ├── rollback-transaction.md
│ │ │ ├── server-execution-safe-mode.md
│ │ │ ├── statement-type-change.md
│ │ │ ├── structure-consructor-too-many-keys.md
│ │ │ ├── structure-consructor-value-type.md
│ │ │ ├── structure-key-modification.md
│ │ │ ├── typed-value-adding-to-untyped-collection.md
│ │ │ ├── unknown-form-parameter-access.md
│ │ │ ├── use-goto-operator.md
│ │ │ ├── use-non-recommended-method.md
│ │ │ ├── using-form-data-to-value.md
│ │ │ ├── using-isinrole.md
│ │ │ └── variable-value-type.md
│ │ ├── server-execution-safe-mode.md
│ │ ├── statement-type-change.md
│ │ ├── structure-consructor-too-many-keys.md
│ │ ├── structure-consructor-value-type.md
│ │ ├── structure-key-modification.md
│ │ ├── typed-value-adding-to-untyped-collection.md
│ │ ├── unknown-form-parameter-access.md
│ │ ├── use-goto-operator.md
│ │ ├── use-non-recommended-method.md
│ │ ├── using-form-data-to-value.md
│ │ ├── using-isinrole.md
│ │ └── variable-value-type.md
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ ├── src
│ │ └── com
│ │ │ └── e1c
│ │ │ └── v8codestyle
│ │ │ ├── bsl
│ │ │ ├── IAsyncInvocationProvider.java
│ │ │ ├── IModuleStructureProvider.java
│ │ │ ├── ModuleStructure.java
│ │ │ ├── ModuleStructureSection.java
│ │ │ ├── check
│ │ │ │ ├── AbstractModuleStructureCheck.java
│ │ │ │ ├── AbstractTransactionCheck.java
│ │ │ │ ├── AccessibilityAtClientInObjectModuleCheck.java
│ │ │ │ ├── AdoptedModuleOwnerExtension.java
│ │ │ │ ├── AttachableEventHandlerNameCheck.java
│ │ │ │ ├── BeginTransactionCheck.java
│ │ │ │ ├── CanonicalPragmaCheck.java
│ │ │ │ ├── ChangeAndValidateInsteadOfAroundCheck.java
│ │ │ │ ├── CodeAfterAsyncCallCheck.java
│ │ │ │ ├── CommitTransactionCheck.java
│ │ │ │ ├── CommonModuleMissingApiCheck.java
│ │ │ │ ├── CommonModuleNamedSelfReferenceCheck.java
│ │ │ │ ├── ConsecutiveEmptyLinesCheck.java
│ │ │ │ ├── DeprecatedProcedureOutsideDeprecatedRegionCheck.java
│ │ │ │ ├── EmptyExceptStatementCheck.java
│ │ │ │ ├── EventDataExchangeLoadCheck.java
│ │ │ │ ├── EventHandlerBooleanParamCheck.java
│ │ │ │ ├── ExportMethodInCommandFormModuleCheck.java
│ │ │ │ ├── ExportProcedureMissingCommentCheck.java
│ │ │ │ ├── ExportVariableInObjectModuleCheck.java
│ │ │ │ ├── ExtensionMethodPrefixCheck.java
│ │ │ │ ├── ExtensionVariablePrefixCheck.java
│ │ │ │ ├── FormModuleMissingPragmaCheck.java
│ │ │ │ ├── FormModulePragmaCheck.java
│ │ │ │ ├── FormSelfReferenceOutdatedCheck.java
│ │ │ │ ├── InvocationFormEventHandlerCheck.java
│ │ │ │ ├── IsInRoleCheck.java
│ │ │ │ ├── IsInRoleMethodRoleExistCheck.java
│ │ │ │ ├── LockOutOfTryCheck.java
│ │ │ │ ├── ManagerModuleNamedSelfReferenceCheck.java
│ │ │ │ ├── Messages.java
│ │ │ │ ├── MethodOptionalParameterBeforeRequiredCheck.java
│ │ │ │ ├── MethodTooManyPramsCheck.java
│ │ │ │ ├── MissingTemporaryFileDeletionCheck.java
│ │ │ │ ├── ModuleEmptyMethodCheck.java
│ │ │ │ ├── ModuleStructureEventFormRegionsCheck.java
│ │ │ │ ├── ModuleStructureEventRegionsCheck.java
│ │ │ │ ├── ModuleStructureInitCodeInRegionCheck.java
│ │ │ │ ├── ModuleStructureMethodInRegionCheck.java
│ │ │ │ ├── ModuleStructureTopRegionCheck.java
│ │ │ │ ├── ModuleStructureVariablesInRegionCheck.java
│ │ │ │ ├── ModuleTypeFilter.java
│ │ │ │ ├── ModuleUnusedLocalVariableCheck.java
│ │ │ │ ├── ModuleUnusedMethodCheck.java
│ │ │ │ ├── NewColorCheck.java
│ │ │ │ ├── NewFontCheck.java
│ │ │ │ ├── NotifyDescriptionToServerProcedureCheck.java
│ │ │ │ ├── NstrStringLiteralFormatCheck.java
│ │ │ │ ├── OptionalFormParameterAccessCheck.java
│ │ │ │ ├── PublicMethodCachingCheck.java
│ │ │ │ ├── QueryInLoopCheck.java
│ │ │ │ ├── ReadingAttributesFromDataBaseCheck.java
│ │ │ │ ├── RedundantExportMethodCheck.java
│ │ │ │ ├── RegionEmptyCheck.java
│ │ │ │ ├── RollbackTransactionCheck.java
│ │ │ │ ├── SelfReferenceCheck.java
│ │ │ │ ├── ServerExecutionSafeModeCheck.java
│ │ │ │ ├── SkipAdoptedInExtensionModuleOwnerExtension.java
│ │ │ │ ├── StructureCtorTooManyKeysCheck.java
│ │ │ │ ├── UndefinedFunctionCheck.java
│ │ │ │ ├── UndefinedMethodCheck.java
│ │ │ │ ├── UndefinedVariableCheck.java
│ │ │ │ ├── UnknownFormParameterAccessCheck.java
│ │ │ │ ├── UseGotoOperatorCheck.java
│ │ │ │ ├── UseNonRecommendedMethodCheck.java
│ │ │ │ ├── UsingFormDataToValueCheck.java
│ │ │ │ ├── VariableNameInvalidCheck.java
│ │ │ │ ├── messages.properties
│ │ │ │ └── messages_ru.properties
│ │ │ ├── comment
│ │ │ │ └── check
│ │ │ │ │ ├── AbstractDocCommentTypeCheck.java
│ │ │ │ │ ├── CollectionTypeDefinitionCheck.java
│ │ │ │ │ ├── DocCommentUseMinusCheck.java
│ │ │ │ │ ├── ExportFunctionReturnSectionCheck.java
│ │ │ │ │ ├── ExportProcedureCommentDescriptionCheck.java
│ │ │ │ │ ├── FieldDefinitionNameCheck.java
│ │ │ │ │ ├── FieldDefinitionTypeCheck.java
│ │ │ │ │ ├── FieldDefinitionTypeWithLinkRefCheck.java
│ │ │ │ │ ├── FunctionReturnSectionCheck.java
│ │ │ │ │ ├── Messages.java
│ │ │ │ │ ├── MultilineDescriptionEndsOnDotCheck.java
│ │ │ │ │ ├── MultilineDescriptionFieldSuggestionCheck.java
│ │ │ │ │ ├── MultilineDescriptionParameterSuggestionCheck.java
│ │ │ │ │ ├── ParametersSectionCheck.java
│ │ │ │ │ ├── ProcedureReturnSectionCheck.java
│ │ │ │ │ ├── RedundantParametersSectionCheck.java
│ │ │ │ │ ├── RefLinkPartCheck.java
│ │ │ │ │ ├── TypeDefinitionCheck.java
│ │ │ │ │ ├── messages.properties
│ │ │ │ │ └── messages_ru.properties
│ │ │ ├── qfix
│ │ │ │ ├── ConsecutiveEmptyLinesFix.java
│ │ │ │ ├── Messages.java
│ │ │ │ ├── RemoveExportFix.java
│ │ │ │ ├── messages.properties
│ │ │ │ └── messages_ru.properties
│ │ │ └── strict
│ │ │ │ ├── StrictTypeUtil.java
│ │ │ │ ├── check
│ │ │ │ ├── AbstractDynamicFeatureAccessTypeCheck.java
│ │ │ │ ├── AbstractTypeCheck.java
│ │ │ │ ├── DocCommentFieldTypeCheck.java
│ │ │ │ ├── DynamicFeatureAccessMethodNotFoundCheck.java
│ │ │ │ ├── DynamicFeatureAccessTypeCheck.java
│ │ │ │ ├── FunctionCtorReturnSectionCheck.java
│ │ │ │ ├── FunctionReturnTypeCheck.java
│ │ │ │ ├── InternalTypeNameRegistry.java
│ │ │ │ ├── InvocationParamIntersectionCheck.java
│ │ │ │ ├── Messages.java
│ │ │ │ ├── MethodParamTypeCheck.java
│ │ │ │ ├── SimpleStatementTypeCheck.java
│ │ │ │ ├── StrictTypeAnnotationCheckExtension.java
│ │ │ │ ├── StructureCtorValueTypeCheck.java
│ │ │ │ ├── StructureKeyModificationCheck.java
│ │ │ │ ├── TypedValueAddingToUntypedCollectionCheck.java
│ │ │ │ ├── VariableTypeCheck.java
│ │ │ │ ├── messages.properties
│ │ │ │ └── messages_ru.properties
│ │ │ │ └── fix
│ │ │ │ ├── Messages.java
│ │ │ │ ├── RemoveStrictTypesAnnotationFix.java
│ │ │ │ ├── messages.properties
│ │ │ │ └── messages_ru.properties
│ │ │ └── internal
│ │ │ └── bsl
│ │ │ ├── AsyncInvocationProvider.java
│ │ │ ├── BslPlugin.java
│ │ │ ├── ExecutableExtensionFactory.java
│ │ │ ├── ExternalDependenciesModule.java
│ │ │ ├── Messages.java
│ │ │ ├── ModuleStructureProjectOptionProvider.java
│ │ │ ├── ModuleStructureProvider.java
│ │ │ ├── ModuleStructureProviderPreferenceInitializer.java
│ │ │ ├── MultiCheckFixRegistrator.java
│ │ │ ├── ServiceModule.java
│ │ │ ├── StrictTypesProjectOptionProvider.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ └── templates
│ │ ├── en
│ │ ├── bot_module.bsl
│ │ ├── command_module.bsl
│ │ ├── common_module.bsl
│ │ ├── external_conn_module.bsl
│ │ ├── form_module.bsl
│ │ ├── http_service_module.bsl
│ │ ├── integration_service_module.bsl
│ │ ├── managed_app_module.bsl
│ │ ├── manager_module.bsl
│ │ ├── object_module.bsl
│ │ ├── ordinary_app_module.bsl
│ │ ├── recordset_module.bsl
│ │ ├── session_module.bsl
│ │ ├── value_manager_module.bsl
│ │ └── web_service_module.bsl
│ │ └── ru
│ │ ├── bot_module.bsl
│ │ ├── command_module.bsl
│ │ ├── common_module.bsl
│ │ ├── external_conn_module.bsl
│ │ ├── form_module.bsl
│ │ ├── http_service_module.bsl
│ │ ├── integration_service_module.bsl
│ │ ├── managed_app_module.bsl
│ │ ├── manager_module.bsl
│ │ ├── object_module.bsl
│ │ ├── ordinary_app_module.bsl
│ │ ├── recordset_module.bsl
│ │ ├── session_module.bsl
│ │ ├── value_manager_module.bsl
│ │ └── web_service_module.bsl
├── com.e1c.v8codestyle.form
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── check.descriptions
│ │ └── .gitignore
│ ├── markdown
│ │ ├── data-composition-conditional-appearance-use.md
│ │ ├── form-commands-single-action-handler.md
│ │ ├── form-dynamic-list-item-title.md
│ │ ├── form-item-visible-settings-by-roles.md
│ │ ├── form-items-single-event-handler.md
│ │ ├── form-list-field-ref-not-added.md
│ │ ├── form-list-ref-use-always-flag-disabled.md
│ │ ├── form-list-ref-user-visibility-enabled.md
│ │ ├── input-field-list-choice-mode.md
│ │ └── ru
│ │ │ ├── data-composition-conditional-appearance-use.md
│ │ │ ├── form-commands-single-action-handler.md
│ │ │ ├── form-dynamic-list-item-title.md
│ │ │ ├── form-item-visible-settings-by-roles.md
│ │ │ ├── form-items-single-event-handler.md
│ │ │ ├── form-list-field-ref-not-added.md
│ │ │ ├── form-list-ref-use-always-flag-disabled.md
│ │ │ ├── form-list-ref-user-visibility-enabled.md
│ │ │ └── input-field-list-choice-mode.md
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── form
│ │ ├── check
│ │ │ ├── CommandHandlerChangeExtension.java
│ │ │ ├── DataCompositionConditionalAppearanceUseCheck.java
│ │ │ ├── DynamicListItemTitleCheck.java
│ │ │ ├── EventHandlerChangeExtension.java
│ │ │ ├── FormCommandsSingleEventHandlerCheck.java
│ │ │ ├── FormItemVisibleSettingsByRolesCheck.java
│ │ │ ├── FormItemsSingleEventHandlerCheck.java
│ │ │ ├── FormListFieldRefNotAddedCheck.java
│ │ │ ├── FormListRefUseAlwaysFlagDisabledCheck.java
│ │ │ ├── FormListRefUserVisibilityEnabledCheck.java
│ │ │ ├── InputFieldListChoiceMode.java
│ │ │ ├── Messages.java
│ │ │ ├── SkipBaseFormExtension.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ └── fix
│ │ │ ├── DynamicListFieldTitleGenerateFix.java
│ │ │ ├── DynamicListItemTitleGenerateFix.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ └── internal
│ │ └── form
│ │ ├── CorePlugin.java
│ │ ├── ExecutableExtensionFactory.java
│ │ └── ExternalDependenciesModule.java
├── com.e1c.v8codestyle.md.ui
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── internal
│ │ └── md
│ │ │ └── ui
│ │ │ ├── ExecutableExtensionFactory.java
│ │ │ ├── ExternalDependenciesModule.java
│ │ │ └── UiPlugin.java
│ │ └── md
│ │ └── ui
│ │ ├── CommonModuleTypeDtNewWizardPage.java
│ │ ├── Messages.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.md
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── check.descriptions
│ │ └── .gitignore
│ ├── markdown
│ │ ├── common-module-name-cached.md
│ │ ├── common-module-name-client-cached.md
│ │ ├── common-module-name-client-server.md
│ │ ├── common-module-name-client.md
│ │ ├── common-module-name-full-access.md
│ │ ├── common-module-name-global-client.md
│ │ ├── common-module-name-global.md
│ │ ├── common-module-name-server-call-cached.md
│ │ ├── common-module-name-server-call.md
│ │ ├── common-module-type.md
│ │ ├── configuration-data-lock-mode.md
│ │ ├── db-object-anyref-type.md
│ │ ├── db-object-max-number-length.md
│ │ ├── db-object-ref-non-ref-type.md
│ │ ├── document-post-in-privileged-mode.md
│ │ ├── extension-md-object-prefix.md
│ │ ├── functional-option-privileged-get-mode.md
│ │ ├── md-list-object-presentation.md
│ │ ├── md-object-attribute-comment-incorrect-type.md
│ │ ├── md-object-attribute-comment-not-exist.md
│ │ ├── md-standard-attribute-synonym-empty.md
│ │ ├── mdo-name-length.md
│ │ ├── mdo-ru-name-unallowed-letter.md
│ │ ├── mdo-scheduled-job-description.md
│ │ ├── register-resource-precision.md
│ │ ├── ru
│ │ │ ├── common-module-name-cached.md
│ │ │ ├── common-module-name-client-cached.md
│ │ │ ├── common-module-name-client-server.md
│ │ │ ├── common-module-name-client.md
│ │ │ ├── common-module-name-full-access.md
│ │ │ ├── common-module-name-global-client.md
│ │ │ ├── common-module-name-global.md
│ │ │ ├── common-module-name-server-call-cached.md
│ │ │ ├── common-module-name-server-call.md
│ │ │ ├── common-module-type.md
│ │ │ ├── configuration-data-lock-mode.md
│ │ │ ├── db-object-anyref-type.md
│ │ │ ├── db-object-max-number-length.md
│ │ │ ├── db-object-ref-non-ref-type.md
│ │ │ ├── document-post-in-privileged-mode.md
│ │ │ ├── extension-md-object-prefix.md
│ │ │ ├── functional-option-privileged-get-mode.md
│ │ │ ├── md-list-object-presentation.md
│ │ │ ├── md-object-attribute-comment-incorrect-type.md
│ │ │ ├── md-object-attribute-comment-not-exist.md
│ │ │ ├── md-standard-attribute-synonym-empty.md
│ │ │ ├── mdo-name-length.md
│ │ │ ├── mdo-ru-name-unallowed-letter.md
│ │ │ ├── mdo-scheduled-job-description.md
│ │ │ ├── register-resource-precision.md
│ │ │ ├── scheduled-job-periodicity-too-short.md
│ │ │ ├── subsystem-synonym-too-long.md
│ │ │ └── unsafe-password-ib-storage.md
│ │ ├── scheduled-job-periodicity-too-short.md
│ │ ├── subsystem-synonym-too-long.md
│ │ └── unsafe-password-ib-storage.md
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── internal
│ │ └── md
│ │ │ ├── CorePlugin.java
│ │ │ ├── ExecutableExtensionFactory.java
│ │ │ └── ExternalDependenciesModule.java
│ │ └── md
│ │ ├── CommonModuleTypes.java
│ │ ├── Messages.java
│ │ ├── check
│ │ ├── DbObjectAnyRefTypeCheck.java
│ │ ├── DbObjectMaxNumberLengthCheck.java
│ │ ├── DbObjectRefNonRefTypesCheck.java
│ │ ├── ExtensionMdObjectNamePrefixCheck.java
│ │ ├── MdListObjectPresentationCheck.java
│ │ ├── MdObjectAttributeCommentCheck.java
│ │ ├── MdObjectAttributeCommentNotExistCheck.java
│ │ ├── MdObjectFromExtensionProjectExtension.java
│ │ ├── MdObjectNameLength.java
│ │ ├── MdObjectNameUnallowedLetterCheck.java
│ │ ├── MdObjectNameWithoutSuffix.java
│ │ ├── MdStandardAttributeSynonymEmpty.java
│ │ ├── Messages.java
│ │ ├── SkipAdoptedInExtensionMdObjectExtension.java
│ │ ├── UnsafePasswordStorageCheck.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
│ │ ├── commonmodule
│ │ └── check
│ │ │ ├── CommonModuleNameCachedCheck.java
│ │ │ ├── CommonModuleNameClient.java
│ │ │ ├── CommonModuleNameClientCachedCheck.java
│ │ │ ├── CommonModuleNameClientServer.java
│ │ │ ├── CommonModuleNameGlobal.java
│ │ │ ├── CommonModuleNameGlobalClientCheck.java
│ │ │ ├── CommonModuleNamePrivilegedCheck.java
│ │ │ ├── CommonModuleNameServerCallCachedCheck.java
│ │ │ ├── CommonModuleNameServerCallCheck.java
│ │ │ ├── CommonModuleType.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ ├── configuration
│ │ └── check
│ │ │ ├── ConfigurationDataLock.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ ├── document
│ │ └── check
│ │ │ ├── DocumentPostInPrivilegedModeCheck.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ ├── functionoption
│ │ └── check
│ │ │ ├── FunctionalOptionPrivilegedGetModeCheck.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ ├── messages.properties
│ │ ├── messages_ru.properties
│ │ ├── register
│ │ └── check
│ │ │ ├── Messages.java
│ │ │ ├── RegisterResourcePrecisionCheck.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ ├── scheduledjob
│ │ └── check
│ │ │ ├── MdScheduledJobDescriptionCheck.java
│ │ │ ├── MdScheduledJobPeriodicityCheck.java
│ │ │ ├── Messages.java
│ │ │ ├── messages.properties
│ │ │ └── messages_ru.properties
│ │ └── subsystem
│ │ └── check
│ │ ├── Messages.java
│ │ ├── SubsystemSynonymTooLongCheck.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.ql
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── check.descriptions
│ │ └── .gitignore
│ ├── markdown
│ │ ├── ql-camel-case-string-literal.md
│ │ ├── ql-cast-to-max-number.md
│ │ ├── ql-constants-in-binary-operation.md
│ │ ├── ql-join-to-sub-query.md
│ │ ├── ql-like-expression-with-field.md
│ │ ├── ql-temp-table-index.md
│ │ ├── ql-using-for-update.md
│ │ ├── ql-virtual-table-filters.md
│ │ └── ru
│ │ │ ├── ql-camel-case-string-literal.md
│ │ │ ├── ql-cast-to-max-number.md
│ │ │ ├── ql-constants-in-binary-operation.md
│ │ │ ├── ql-join-to-sub-query.md
│ │ │ ├── ql-like-expression-with-field.md
│ │ │ ├── ql-temp-table-index.md
│ │ │ ├── ql-using-for-update.md
│ │ │ └── ql-virtual-table-filters.md
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── internal
│ │ └── ql
│ │ │ ├── CorePlugin.java
│ │ │ ├── ExecutableExtensionFactory.java
│ │ │ └── ExternalDependenciesModule.java
│ │ └── ql
│ │ └── check
│ │ ├── CamelCaseStringLiteral.java
│ │ ├── CastToMaxNumber.java
│ │ ├── ConstantsInBinaryOperationCheck.java
│ │ ├── JoinToSubQuery.java
│ │ ├── LikeExpressionWithFieldCheck.java
│ │ ├── Messages.java
│ │ ├── TempTableHasIndex.java
│ │ ├── UsingForUpdateCheck.java
│ │ ├── VirtualTableFiltersCheck.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.right
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── check.descriptions
│ │ └── .gitignore
│ ├── markdown
│ │ ├── right-active-users.md
│ │ ├── right-administration.md
│ │ ├── right-all-functions-mode.md
│ │ ├── right-configuration-extensions-administration.md
│ │ ├── right-data-administration.md
│ │ ├── right-delete.md
│ │ ├── right-exclusive-mode.md
│ │ ├── right-interactive-clear-deletion-mark-predefined-data.md
│ │ ├── right-interactive-delete-marked-predefined-data.md
│ │ ├── right-interactive-delete-predefined-data.md
│ │ ├── right-interactive-delete.md
│ │ ├── right-interactive-open-external-data-processors.md
│ │ ├── right-interactive-open-external-reports.md
│ │ ├── right-interactive-set-deletion-mark-predefined-data.md
│ │ ├── right-output-to-printer-file-clipboard.md
│ │ ├── right-save-user-data.md
│ │ ├── right-start-automation.md
│ │ ├── right-start-external-connection.md
│ │ ├── right-start-thick-client.md
│ │ ├── right-start-thin-client.md
│ │ ├── right-start-web-client.md
│ │ ├── right-update-database-configuration.md
│ │ ├── right-view-event-log.md
│ │ ├── role-right-has-rls.md
│ │ └── ru
│ │ │ ├── right-active-users.md
│ │ │ ├── right-administration.md
│ │ │ ├── right-all-functions-mode.md
│ │ │ ├── right-configuration-extensions-administration.md
│ │ │ ├── right-data-administration.md
│ │ │ ├── right-delete.md
│ │ │ ├── right-exclusive-mode.md
│ │ │ ├── right-interactive-clear-deletion-mark-predefined-data.md
│ │ │ ├── right-interactive-delete-marked-predefined-data.md
│ │ │ ├── right-interactive-delete-predefined-data.md
│ │ │ ├── right-interactive-delete.md
│ │ │ ├── right-interactive-open-external-data-processors.md
│ │ │ ├── right-interactive-open-external-reports.md
│ │ │ ├── right-interactive-set-deletion-mark-predefined-data.md
│ │ │ ├── right-output-to-printer-file-clipboard.md
│ │ │ ├── right-save-user-data.md
│ │ │ ├── right-start-automation.md
│ │ │ ├── right-start-external-connection.md
│ │ │ ├── right-start-thick-client.md
│ │ │ ├── right-start-thin-client.md
│ │ │ ├── right-start-web-client.md
│ │ │ ├── right-update-database-configuration.md
│ │ │ ├── right-view-event-log.md
│ │ │ └── role-right-has-rls.md
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── internal
│ │ └── right
│ │ │ ├── CorePlugin.java
│ │ │ ├── ExecutableExtensionFactory.java
│ │ │ └── ExternalDependenciesModule.java
│ │ └── right
│ │ └── check
│ │ ├── ExcludeRoleByNameListExtension.java
│ │ ├── ExcludeRoleByPatternExtension.java
│ │ ├── Messages.java
│ │ ├── RightActiveUsers.java
│ │ ├── RightAdministration.java
│ │ ├── RightAllFunctionsMode.java
│ │ ├── RightConfigurationExtensionsAdministration.java
│ │ ├── RightDataAdministration.java
│ │ ├── RightDelete.java
│ │ ├── RightExclusiveMode.java
│ │ ├── RightInteractiveClearDeletionMarkPredefinedData.java
│ │ ├── RightInteractiveDelete.java
│ │ ├── RightInteractiveDeleteMarkedPredefinedData.java
│ │ ├── RightInteractiveDeletePredefinedData.java
│ │ ├── RightInteractiveOpenExternalDataProcessors.java
│ │ ├── RightInteractiveOpenExternalReports.java
│ │ ├── RightInteractiveSetDeletionMarkPredefinedData.java
│ │ ├── RightOutputToPrinterFileClipboard.java
│ │ ├── RightSaveUserData.java
│ │ ├── RightStartAutomation.java
│ │ ├── RightStartExternalConnection.java
│ │ ├── RightStartThickClient.java
│ │ ├── RightStartThinClient.java
│ │ ├── RightStartWebClient.java
│ │ ├── RightUpdateDatabaseConfiguration.java
│ │ ├── RightViewEventLog.java
│ │ ├── RoleNameChangeExtension.java
│ │ ├── RoleRightHasRls.java
│ │ ├── RoleRightSetCheck.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
├── com.e1c.v8codestyle.ui
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── build.properties
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── internal
│ │ └── ui
│ │ ├── ExecutableExtensionFactory.java
│ │ ├── ExternalDependenciesModule.java
│ │ ├── Messages.java
│ │ ├── ProjectOptionsDtNewWizardPage.java
│ │ ├── UiPlugin.java
│ │ ├── messages.properties
│ │ ├── messages_ru.properties
│ │ └── properties
│ │ └── ProjectOptionsPropertyPage.java
├── com.e1c.v8codestyle
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── org.eclipse.core.resources.prefs
│ │ └── org.eclipse.jdt.core.prefs
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── about.ini
│ ├── build.properties
│ ├── logo.png
│ ├── logo@2x.png
│ ├── plugin.launch
│ ├── plugin.properties
│ ├── plugin.xml
│ ├── plugin_ru.properties
│ ├── pom.xml
│ ├── schema
│ │ └── projectOptions.exsd
│ └── src
│ │ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── IProjectOptionManager.java
│ │ ├── IProjectOptionProvider.java
│ │ ├── ProjectOption.java
│ │ ├── check
│ │ ├── CheckUtils.java
│ │ ├── CommonCheckRegistry.java
│ │ ├── CommonSenseCheckExtension.java
│ │ ├── StandardCheckExtension.java
│ │ └── StandardCheckRegistry.java
│ │ └── internal
│ │ ├── CheckPreferenceInitializer.java
│ │ ├── CommonChecksProjectOptionProvider.java
│ │ ├── CorePlugin.java
│ │ ├── ExecutableExtensionFactory.java
│ │ ├── ExternalDependenciesModule.java
│ │ ├── Messages.java
│ │ ├── ProjectOptionManager.java
│ │ ├── ServiceModule.java
│ │ ├── StandardChecksProjectOptionProvider.java
│ │ ├── messages.properties
│ │ └── messages_ru.properties
└── pom.xml
├── checkstyle.xml
├── docs
├── .classpath
├── .gitignore
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ ├── org.eclipse.jdt.core.prefs
│ └── org.eclipse.jdt.groovy.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── README.md
├── build.properties
├── checks
│ ├── .gitignore
│ ├── acc_index.md
│ ├── bsl.md
│ ├── check_index.md
│ ├── checks_error_codes.txt
│ ├── checks_index.txt
│ ├── code_typification.md
│ ├── edt.md
│ ├── form.md
│ ├── md.md
│ ├── ql.md
│ ├── readme.md
│ └── right.md
├── contributing
│ ├── Check_Convention.md
│ ├── EDT-code-style-cleanup.xml
│ ├── EDT-code-style-fomatter.xml
│ ├── check_description.md
│ ├── check_example.md
│ ├── check_workflow.md
│ ├── code_style.md
│ ├── commits.md
│ ├── documentation.md
│ ├── environment.md
│ ├── issue.md
│ ├── licensing.md
│ ├── project_language.md
│ ├── pull_request.md
│ ├── readme.md
│ ├── testing.md
│ └── versioning.md
├── html
│ └── .gitignore
├── plugin.properties
├── plugin.xml
├── plugin_ru.properties
├── pom.xml
├── src
│ ├── .gitkeep
│ └── CheckListGenerator.groovy
├── toc.xml
└── tools
│ ├── autosort.md
│ ├── bsl-doc-comment-view.md
│ ├── common-module-types.md
│ ├── module-structure.md
│ └── readme.md
├── features
├── com.e1c.v8codestyle.feature
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── SourceTemplateFeature
│ │ ├── build.properties
│ │ └── feature.properties
│ ├── build.properties
│ ├── feature.properties
│ ├── feature.xml
│ ├── feature_ru.properties
│ └── pom.xml
├── com.e1c.v8codestyle.sdk.feature
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── build.properties
│ ├── feature.properties
│ ├── feature.xml
│ └── pom.xml
└── pom.xml
├── java.header
├── pom.xml
├── repositories
├── com.e1c.v8codestyle.repository.sdk
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── category.xml
│ └── pom.xml
├── com.e1c.v8codestyle.repository
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── category.xml
│ └── pom.xml
└── pom.xml
├── targets
├── .project
├── .settings
│ └── org.eclipse.core.resources.prefs
├── default
│ ├── default.target
│ └── pom.xml
├── develop
│ └── develop.target
└── pom.xml
└── tests
├── com.e1c.v8codestyle.autosort.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── autosort
│ │ └── itests
│ │ ├── ExternalDependenciesModule.java
│ │ ├── SortCommandTest.java
│ │ ├── SortServiceTest.java
│ │ └── SortSubsystemsTest.java
└── workspace
│ ├── Sort
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── АМ2_4Модуль
│ │ │ ├── Module.bsl
│ │ │ └── АМ2_4Модуль.mdo
│ │ ├── АМ_Модуль
│ │ │ ├── Module.bsl
│ │ │ └── АМ_Модуль.mdo
│ │ ├── АМодуль
│ │ │ ├── Module.bsl
│ │ │ └── АМодуль.mdo
│ │ ├── БМодуль
│ │ │ ├── Module.bsl
│ │ │ └── БМодуль.mdo
│ │ ├── ГМодуль
│ │ │ ├── Module.bsl
│ │ │ └── ГМодуль.mdo
│ │ └── ОбщийМодуль
│ │ │ ├── Module.bsl
│ │ │ └── ОбщийМодуль.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ └── SubsystemsAutoSort
│ ├── .project
│ ├── .settings
│ ├── com.e1c.v8codestyle.autosort.prefs
│ ├── com.e1c.v8codestyle.prefs
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
│ └── Subsystems
│ └── Subsystem
│ ├── CommandInterface.cmi
│ ├── Subsystem.mdo
│ └── Subsystems
│ ├── Subsystem1
│ ├── CommandInterface.cmi
│ └── Subsystem1.mdo
│ └── Subsystem2
│ ├── CommandInterface.cmi
│ └── Subsystem2.mdo
├── com.e1c.v8codestyle.bsl.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── resources
│ ├── async-call-back-descr.bsl
│ ├── async-call-promise.bsl
│ ├── async-call-promise2.bsl
│ ├── async-call-promise3.bsl
│ ├── async-call-promise4.bsl
│ ├── async-call-spread-sh-doc.bsl
│ ├── bsl-canonical-pragma.bsl
│ ├── bsl-variable-name-invalid.bsl
│ ├── change-and-validate-instead-of-around.bsl
│ ├── code-after-async-call-existence.bsl
│ ├── commit-transaction-must-be-in-try-catch.bsl
│ ├── common-module-missing-api.bsl
│ ├── deprecated-method-compliant.bsl
│ ├── deprecated-method-compliant2.bsl
│ ├── deprecated-method-nested-region-compliant.bsl
│ ├── deprecated-method-non-compliant.bsl
│ ├── deprecated-method-non-export.bsl
│ ├── doc-comment-collection-item-type.bsl
│ ├── doc-comment-complex-type-with-link.bsl
│ ├── doc-comment-description-ends-on-dot.bsl
│ ├── doc-comment-export-function-no-description-section.bsl
│ ├── doc-comment-export-function-return-section.bsl
│ ├── doc-comment-export-function-with-description-section.bsl
│ ├── doc-comment-field-in-description-suggestion.bsl
│ ├── doc-comment-field-name-ununique.bsl
│ ├── doc-comment-field-name.bsl
│ ├── doc-comment-field-type.bsl
│ ├── doc-comment-parameter-in-description-suggestion.bsl
│ ├── doc-comment-parameter-section.bsl
│ ├── doc-comment-procedure-return-section.bsl
│ ├── doc-comment-redundant-parameter-section.bsl
│ ├── doc-comment-ref-link.bsl
│ ├── doc-comment-return-section-type.bsl
│ ├── doc-comment-type.bsl
│ ├── doc-comment-use-minus.bsl
│ ├── empty-except-statement.bsl
│ ├── empty-lines.bsl
│ ├── export-procedure-no-comment.bsl
│ ├── export-procedure-with-comment.bsl
│ ├── form-module-missing-pragma.bsl
│ ├── form-module-pragma.bsl
│ ├── isinrole-method.bsl
│ ├── lock-out-of-try.bsl
│ ├── lock-out-of-try2.bsl
│ ├── method-optional-parameter-before-required.bsl
│ ├── method-too-many-params.bsl
│ ├── module-attachable-event-handler-name.bsl
│ ├── module-empty-method.bsl
│ ├── module-structure-region-is-duplicated.bsl
│ ├── module-structure-region-is-not-on-top.bsl
│ ├── module-structure-region-is-wrong-order.bsl
│ ├── module-structure-sub-region-after-method.bsl
│ ├── module-structure-sub-region.bsl
│ ├── module-structure-top-region-compliant.bsl
│ ├── module-structure-top-region-noncompliant.bsl
│ ├── module-structure.bsl
│ ├── module-unused-local-variable.bsl
│ ├── module-unused-method.bsl
│ ├── new-color.bsl
│ ├── new-color2.bsl
│ ├── new-color3.bsl
│ ├── new-color4.bsl
│ ├── new-font.bsl
│ ├── new-font2.bsl
│ ├── new-font3.bsl
│ ├── no-begin-transaction-for-commit-transaction.bsl
│ ├── no-begin-transaction-for-rollback-transaction.bsl
│ ├── no-commit-transaction-for-begin-transaction.bsl
│ ├── no-rollback-transaction-for-begin-transaction.bsl
│ ├── non-public-export-procedure-no-comment.bsl
│ ├── not-found-try-after-begin.bsl
│ ├── notify-description-to-server-procedure.bsl
│ ├── notify-description-to-server-procedure2.bsl
│ ├── nstr-format
│ │ ├── compliant.bsl
│ │ ├── non-compliant-1.bsl
│ │ ├── non-compliant-2.bsl
│ │ ├── non-compliant-3.bsl
│ │ ├── non-compliant-4.bsl
│ │ ├── non-compliant-5.bsl
│ │ ├── non-compliant-6.bsl
│ │ └── non-compliant-7.bsl
│ ├── object-module-export-variable.bsl
│ ├── one-empty-line.bsl
│ ├── query-in-loop-infinite.bsl
│ ├── query-in-loop.bsl
│ ├── read-single-property-bsl-compliant.bsl
│ ├── read-single-property-bsl-non-compliant.bsl
│ ├── read-single-property-db-non-compliant.bsl
│ ├── read-single-property-ql-compliant.bsl
│ ├── read-single-property-simple-type.bsl
│ ├── region-empty-after.bsl
│ ├── region-empty-before.bsl
│ ├── region-empty-sub-region.bsl
│ ├── region-empty.bsl
│ ├── region-not-empty.bsl
│ ├── rollback-transaction-must-be-in-try-catch.bsl
│ ├── should-be-no-executable-code-between-begin-and-try.bsl
│ ├── should-be-no-executable-code-between-commit-and-exception.bsl
│ ├── should-be-no-executable-code-between-exception-and-rollback.bsl
│ ├── strict
│ │ ├── constructor-function-return-section.bsl
│ │ ├── doc-comment-field-type-strict.bsl
│ │ ├── dynamic-access-method-not-found.bsl
│ │ ├── function-return-value-type.bsl
│ │ ├── invocation-parameter-type-intersect-catalog-object.bsl
│ │ ├── invocation-parameter-type-intersect-collection-item.bsl
│ │ ├── invocation-parameter-type-intersect-local-doc-comment.bsl
│ │ ├── invocation-parameter-type-intersect-select-param-set.bsl
│ │ ├── invocation-parameter-type-intersect-with-default.bsl
│ │ ├── invocation-parameter-type-intersect.bsl
│ │ ├── invocation-parameter-type-valuelist-item-type.bsl
│ │ ├── invocation-parameter-type-valuelist-undefined-item-type.bsl
│ │ ├── method-param-value-type.bsl
│ │ ├── property-return-type.bsl
│ │ ├── statement-type-change-common-module.bsl
│ │ ├── statement-type-change-with-doc-comment.bsl
│ │ ├── statement-type-change.bsl
│ │ ├── structure-consructor-value-type.bsl
│ │ ├── structure-key-modification.bsl
│ │ ├── typed-value-adding-to-untyped-array.bsl
│ │ ├── typed-value-adding-to-untyped-value-list.bsl
│ │ └── variable-value-type.bsl
│ ├── structure-consructor-too-many-keys.bsl
│ ├── temporary-file-deletion
│ │ ├── begin-deleting-files.bsl
│ │ ├── custom-deletion-method-level-0.bsl
│ │ ├── custom-deletion-method-level-1.bsl
│ │ ├── custom-deletion-method-level-2.bsl
│ │ ├── delete-files.bsl
│ │ ├── move-file.bsl
│ │ └── non-compliant.bsl
│ ├── use-goto-operator.bsl
│ ├── use-non-recommended-method-find.bsl
│ ├── use-non-recommended-methods.bsl
│ └── using-form-data-to-value.bsl
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── bsl
│ │ ├── check
│ │ └── itests
│ │ │ ├── AbstractSingleModuleTestBase.java
│ │ │ ├── AccessibilityAtClientInObjectModuleCheckTest.java
│ │ │ ├── AttachableEventHandlerNameCheckTest.java
│ │ │ ├── BeginTransactionCheckTest.java
│ │ │ ├── CanonicalPragmaCheckTest.java
│ │ │ ├── ChangeAndValidateInsteadOfAroundCheckTest.java
│ │ │ ├── CheckDescriptionTest.java
│ │ │ ├── CodeAfterAsyncCallCheckTest.java
│ │ │ ├── CommitTransactionCheckTest.java
│ │ │ ├── CommonModuleMissingApiCheckTest.java
│ │ │ ├── CommonModuleNamedSelfReferenceCheckTest.java
│ │ │ ├── ConsecutiveEmptyLinesCheckTest.java
│ │ │ ├── DeprecatedProcedureOutsideDeprecatedRegionCheckTest.java
│ │ │ ├── EmptyExceptStatementCheckTest.java
│ │ │ ├── EventDataExchangeLoadCheckTest.java
│ │ │ ├── EventHandlerBooleanParamCheckTest.java
│ │ │ ├── ExportMethodInCommandFormModuleCheckTest.java
│ │ │ ├── ExportProcedureMissingCommentCheckTest.java
│ │ │ ├── ExportVariableInObjectModuleCheckTest.java
│ │ │ ├── ExtensionMethodPrefixCheckTest.java
│ │ │ ├── ExtensionVariablePrefixCheckTest.java
│ │ │ ├── FormModuleMissingPragmaCheckTest.java
│ │ │ ├── FormModulePragmaCheckTest.java
│ │ │ ├── FormSelfReferenceOutdatedCheckTest.java
│ │ │ ├── InvocationFormEventHandlerCheckTest.java
│ │ │ ├── IsInRoleCheckTest.java
│ │ │ ├── IsInRoleMethodRoleExistCheckTest.java
│ │ │ ├── LockOutOfTryCheckTest.java
│ │ │ ├── ManagerModuleNamedSelfReferenceCheckTest.java
│ │ │ ├── MethodOptionalParameterBeforeRequiredCheckTest.java
│ │ │ ├── MethodTooManyPramsCheckTest.java
│ │ │ ├── MissingTemporaryFileDeletionCheckTest.java
│ │ │ ├── ModuleEmptyMethodCheckTest.java
│ │ │ ├── ModuleStructureEventFormRegionsCheckTest.java
│ │ │ ├── ModuleStructureEventRegionsCheckTest.java
│ │ │ ├── ModuleStructureInitCodeInRegionCheckTest.java
│ │ │ ├── ModuleStructureMethodInRegionCheckTest.java
│ │ │ ├── ModuleStructureTopRegionCheckTest.java
│ │ │ ├── ModuleStructureVariablesInRegionCheckTest.java
│ │ │ ├── ModuleUnusedLocalVariableCheckTest.java
│ │ │ ├── ModuleUnusedMethodCheckTest.java
│ │ │ ├── NewColorCheckTest.java
│ │ │ ├── NewFontCheckTest.java
│ │ │ ├── NotifyDescriptionToServerProcedureCheck2Test.java
│ │ │ ├── NotifyDescriptionToServerProcedureCheckTest.java
│ │ │ ├── NstrStringLiteralFormatCheckTest.java
│ │ │ ├── OptionalFormParameterAccessCheckTest.java
│ │ │ ├── PublicMethodCachingCheckTest.java
│ │ │ ├── QueryInLoopCheckTest.java
│ │ │ ├── ReadingAttributesFromDataBaseCheckTest.java
│ │ │ ├── RedundantExportMethodCheckTest.java
│ │ │ ├── RegionEmptyCheckTest.java
│ │ │ ├── RollbackTransactionCheckTest.java
│ │ │ ├── SelfReferenceCheckTest.java
│ │ │ ├── ServerExecutionSafeModeCheckTest.java
│ │ │ ├── StructureCtorTooManyKeysCheckTest.java
│ │ │ ├── UnknownFormParameterAccessCheckTest.java
│ │ │ ├── UseGotoOperatorCheckTest.java
│ │ │ ├── UseNonRecommendedMethodsTest.java
│ │ │ ├── UsingFormDataToValueCheckTest.java
│ │ │ └── VariableNameInvalidCheckTest.java
│ │ ├── comment
│ │ └── check
│ │ │ └── itests
│ │ │ ├── CollectionTypeDefinitionCheckTest.java
│ │ │ ├── DocCommentUseMinusCheckTest.java
│ │ │ ├── ExportFunctionReturnSectionCheckTest.java
│ │ │ ├── ExportProcedureCommentDescriptionCheckTest.java
│ │ │ ├── FieldDefinitionNameCheckTest.java
│ │ │ ├── FieldDefinitionTypeCheckTest.java
│ │ │ ├── FieldDefinitionTypeWithLinkRefCheckTest.java
│ │ │ ├── FunctionReturnSectionCheckTest.java
│ │ │ ├── MultilineDescriptionEndsOnDotCheckTest.java
│ │ │ ├── MultilineDescriptionFieldSuggestionCheckTest.java
│ │ │ ├── MultilineDescriptionParameterSuggestionCheckTest.java
│ │ │ ├── ParametersSectionCheckTest.java
│ │ │ ├── ProcedureReturnSectionCheckTest.java
│ │ │ ├── RedundantParametersSectionCheckTest.java
│ │ │ ├── RefLinkPartCheckTest.java
│ │ │ └── TypeDefinitionCheckTest.java
│ │ ├── fix
│ │ └── itests
│ │ │ └── ConsecutiveEmptyLinesFixTest.java
│ │ └── strict
│ │ └── check
│ │ └── itests
│ │ ├── CommonModuleStrictTypesTest.java
│ │ └── InvocationParamIntersectionCheckTest.java
└── workspace
│ ├── AccessibilityAtClient
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── ManagerModule.bsl
│ │ │ ├── ObjectModule.bsl
│ │ │ └── Products.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CachedPublicCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleCached
│ │ │ ├── CommonModuleCached.mdo
│ │ │ └── Module.bsl
│ │ └── CommonModuleCachedCompliant
│ │ │ ├── CommonModuleCachedCompliant.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CanonicalPragmaExtension
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CatalogModules
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── TestCatalog
│ │ │ ├── ManagerModule.bsl
│ │ │ ├── ObjectModule.bsl
│ │ │ └── TestCatalog.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ChangeAndValidateInsteadOfAroundExtension
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CommonForm
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Form.form
│ │ │ ├── Form.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CommonModule
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CommonModuleNamedSelfReferenceCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── MyCommonModule
│ │ │ ├── Module.bsl
│ │ │ └── MyCommonModule.mdo
│ │ └── MyCommonModuleCached
│ │ │ ├── Module.bsl
│ │ │ └── MyCommonModuleCached.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ConsecutiveEmptyLines
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── EventDataExchangeLoadCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── ObjectModule.bsl
│ │ │ └── Products.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── EventHandlerBooleanParam
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── Forms
│ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ ├── ManagerModule.bsl
│ │ │ ├── ObjectModule.bsl
│ │ │ └── Products.mdo
│ │ ├── CommonModules
│ │ └── Common
│ │ │ ├── Common.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── EventSubscriptions
│ │ └── ProductsOnWrite
│ │ └── ProductsOnWrite.mdo
│ ├── ExcessExportCheck
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ ├── Forms
│ │ │ ├── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── ListForm
│ │ │ │ ├── Attributes
│ │ │ │ └── List
│ │ │ │ │ └── ExtInfo
│ │ │ │ │ └── ListSettings.dcss
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── ObjectModule.bsl
│ │ ├── CommonModules
│ │ ├── CallNoPublic
│ │ │ ├── CallNoPublic.mdo
│ │ │ └── Module.bsl
│ │ ├── NoCallNoPublic
│ │ │ ├── Module.bsl
│ │ │ └── NoCallNoPublic.mdo
│ │ ├── NoCallPublic
│ │ │ ├── Module.bsl
│ │ │ └── NoCallPublic.mdo
│ │ ├── isEventSubscription
│ │ │ ├── Module.bsl
│ │ │ └── isEventSubscription.mdo
│ │ └── isScheduledJob
│ │ │ ├── Module.bsl
│ │ │ └── isScheduledJob.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ ├── EventSubscriptions
│ │ └── EventSubscription
│ │ │ └── EventSubscription.mdo
│ │ └── ScheduledJobs
│ │ └── ScheduledJob
│ │ ├── Schedule.schedule
│ │ └── ScheduledJob.mdo
│ ├── ExportMethodInCommandFormModuleCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── Commands
│ │ │ ├── Command
│ │ │ │ └── CommandModule.bsl
│ │ │ └── TestCommand
│ │ │ │ └── CommandModule.bsl
│ │ │ ├── Forms
│ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── Products.mdo
│ │ ├── CommonCommands
│ │ ├── CommonCommand
│ │ │ ├── CommandModule.bsl
│ │ │ └── CommonCommand.mdo
│ │ └── CommonCommand1
│ │ │ ├── CommandModule.bsl
│ │ │ └── CommonCommand1.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ExtensionMethodPrefixCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── CompliantCommonModule
│ │ │ ├── CompliantCommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ExtensionMethodPrefixCheck_Extension
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── CompliantCommonModule
│ │ │ ├── CompliantCommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ └── Ext1_DefaultRole
│ │ ├── Ext1_DefaultRole.mdo
│ │ └── Rights.rights
│ ├── ExtensionVariablePrefixCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── Forms
│ │ │ └── ItemForm
│ │ │ └── Form.form
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Form.form
│ │ │ ├── Form.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── CompliantCommonModule
│ │ │ ├── CompliantCommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ExtensionVariablePrefixCheck_Extension
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── Forms
│ │ │ └── ItemForm
│ │ │ ├── BaseForm
│ │ │ └── Form.form
│ │ │ ├── Form.form
│ │ │ └── Module.bsl
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── BaseForm
│ │ │ └── Form.form
│ │ │ ├── Form.form
│ │ │ ├── Form.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── CompliantCommonModule
│ │ │ ├── CompliantCommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ └── Ext1_DefaultRole
│ │ ├── Ext1_DefaultRole.mdo
│ │ └── Rights.rights
│ ├── FormSelfReferenceOutdatedCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── MyForm
│ │ │ ├── Form.form
│ │ │ ├── Module.bsl
│ │ │ └── MyForm.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── InvocationFormEventHandler
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── Forms
│ │ │ ├── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ ├── ItemForm1
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── ItemForm2
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── Products.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── IsInRoleMethodRoleExist
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── RolesCommonModule
│ │ │ ├── Module.bsl
│ │ │ └── RolesCommonModule.mdo
│ │ └── Users
│ │ │ ├── Module.bsl
│ │ │ └── Users.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ └── TestRole1
│ │ ├── Rights.rights
│ │ └── TestRole1.mdo
│ ├── ManagerModuleNamedSelfReferenceCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── ManagerModule.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ModuleStructureEventFormRegionsCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogCommand
│ │ │ ├── CatalogCommand.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogCommandInWrongMethod
│ │ │ ├── CatalogCommandInWrongMethod.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogCommandInWrongRegion
│ │ │ ├── CatalogCommandInWrongRegion.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogField
│ │ │ ├── CatalogField.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogFieldInWrongMethod
│ │ │ ├── CatalogFieldInWrongMethod.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogFieldInWrongRegion
│ │ │ ├── CatalogFieldInWrongRegion.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogInWrongMethod
│ │ │ ├── CatalogInWrongMethod.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogInWrongRegion
│ │ │ ├── CatalogInWrongRegion.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogTable
│ │ │ ├── CatalogTable.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogTableInWrongMethod
│ │ │ ├── CatalogTableInWrongMethod.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ └── CatalogTableInWrongRegion
│ │ │ ├── CatalogTableInWrongRegion.mdo
│ │ │ └── Forms
│ │ │ └── ItemForm
│ │ │ ├── Form.form
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ModuleStructureInitCodeInRegion
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── ObjectModule.bsl
│ │ ├── CatalogOutRegion
│ │ │ ├── CatalogOutRegion.mdo
│ │ │ └── ObjectModule.bsl
│ │ └── CatalogWrongRegion
│ │ │ ├── CatalogWrongRegion.mdo
│ │ │ └── ObjectModule.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ModuleStructureMethodInRegionCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── CatalogOutOfRegion
│ │ │ ├── CatalogOutOfRegion.mdo
│ │ │ ├── Forms
│ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ └── ManagerModule.bsl
│ │ ├── CommonCommands
│ │ └── CommonCommand
│ │ │ ├── CommandModule.bsl
│ │ │ └── CommonCommand.mdo
│ │ ├── CommonModules
│ │ ├── CommonModulMultiLevel
│ │ │ ├── CommonModulMultiLevel.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleAfterRegion
│ │ │ ├── CommonModuleAfterRegion.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleExportInRegion
│ │ │ ├── CommonModuleExportInRegion.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleInNonInterfaceRegion
│ │ │ ├── CommonModuleInNonInterfaceRegion.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleInRegion
│ │ │ ├── CommonModuleInRegion.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModuleMultiLevel1
│ │ │ ├── CommonModuleMultiLevel1.mdo
│ │ │ └── Module.bsl
│ │ └── CommonModuleNoRegion
│ │ │ ├── CommonModuleNoRegion.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ModuleStructureTopRegionCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ ├── Forms
│ │ │ └── ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ │ ├── ManagerModule.bsl
│ │ │ └── ObjectModule.bsl
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── ComplientCommonModule
│ │ │ ├── ComplientCommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── NonComplientCommonModule
│ │ │ ├── Module.bsl
│ │ │ └── NonComplientCommonModule.mdo
│ │ ├── NonComplientCommonModule1
│ │ │ ├── Module.bsl
│ │ │ └── NonComplientCommonModule1.mdo
│ │ ├── NonComplientCommonModule2
│ │ │ ├── Module.bsl
│ │ │ └── NonComplientCommonModule2.mdo
│ │ └── NonComplientCommonModule3
│ │ │ ├── Module.bsl
│ │ │ └── NonComplientCommonModule3.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ModuleStructureVariablesInRegionCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ ├── ManagerModule.bsl
│ │ │ └── ObjectModule.bsl
│ │ ├── CatalogComplient
│ │ │ ├── CatalogComplient.mdo
│ │ │ └── ObjectModule.bsl
│ │ ├── CatalogNoRegion
│ │ │ ├── CatalogNoRegion.mdo
│ │ │ └── ObjectModule.bsl
│ │ ├── CatalogOutOfRegion
│ │ │ ├── CatalogOutOfRegion.mdo
│ │ │ └── ObjectModule.bsl
│ │ └── CatalogWrongRegion
│ │ │ ├── CatalogWrongRegion.mdo
│ │ │ └── ObjectModule.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── OptionalFormParameterAccess
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── TestForm
│ │ │ ├── Form.form
│ │ │ ├── Module.bsl
│ │ │ └── TestForm.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── SelfReferenceCheck
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ ├── com.e1c.g5.v8.dt.formatter.bsl.prefs
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── ManagerModule.bsl
│ │ │ ├── ObjectModule.bsl
│ │ │ └── Products.mdo
│ │ ├── CommonForms
│ │ └── MyForm
│ │ │ ├── Form.form
│ │ │ ├── Module.bsl
│ │ │ └── MyForm.mdo
│ │ ├── CommonModules
│ │ └── MyCommonModule
│ │ │ ├── Module.bsl
│ │ │ └── MyCommonModule.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── ServerExecutionSafeModeCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Form.form
│ │ │ ├── Form.mdo
│ │ │ └── Module.bsl
│ │ ├── CommonModules
│ │ ├── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ └── CommonModuleServerCall
│ │ │ ├── CommonModuleServerCall.mdo
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── StructureModule
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── CatalogInRegion
│ │ │ ├── CatalogInRegion.mdo
│ │ │ ├── ManagerModule.bsl
│ │ │ └── ObjectModule.bsl
│ │ ├── CatalogInRegionWrongMethod
│ │ │ ├── CatalogInRegionWrongMethod.mdo
│ │ │ ├── ManagerModule.bsl
│ │ │ └── ObjectModule.bsl
│ │ └── CatalogInWrongRegion
│ │ │ ├── CatalogInWrongRegion.mdo
│ │ │ ├── ManagerModule.bsl
│ │ │ └── ObjectModule.bsl
│ │ ├── CommonModules
│ │ └── CommonModule
│ │ │ ├── CommonModule.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── EventSubscriptions
│ │ └── EventSubscription
│ │ └── EventSubscription.mdo
│ └── UnknownFormParameterAccess
│ ├── .project
│ ├── .settings
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── CommonForms
│ └── TestForm
│ │ ├── Form.form
│ │ ├── Module.bsl
│ │ └── TestForm.mdo
│ └── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
├── com.e1c.v8codestyle.bsl.ui.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── resources
│ ├── doc-comment-format-result.bsl
│ ├── doc-comment-format.bsl
│ └── doc-comment-view.bsl
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── bsl
│ │ └── ui
│ │ └── itests
│ │ ├── BslDocCommentViewTest.java
│ │ ├── ModuleStructurePreferencePageTest.java
│ │ ├── ModuleStructurePropertyPageTest.java
│ │ └── handlers
│ │ └── FormatDocCommentModuleEditorHandlerTest.java
└── workspace
│ └── CommonModule
│ ├── .project
│ ├── .settings
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── CommonModules
│ └── CommonModule
│ │ ├── CommonModule.mdo
│ │ └── Module.bsl
│ └── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
├── com.e1c.v8codestyle.form.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── form
│ │ ├── check
│ │ └── itests
│ │ │ ├── CheckDescriptionTest.java
│ │ │ ├── DataCompositionConditionalAppearanceUseCheckTest.java
│ │ │ ├── DynamicListItemTitleCheckTest.java
│ │ │ ├── FormCommandsSingleEventHandlerCheckTest.java
│ │ │ ├── FormItemVisibleSettingsByRolesCheckTest.java
│ │ │ ├── FormItemsSingleEventHandlerCheckTest.java
│ │ │ ├── FormListFieldRefNotAddedCheckTest.java
│ │ │ ├── FormListRefUseAlwaysFlagDisabledCheckTest.java
│ │ │ ├── FormListRefUserVisibilityEnabledCheckTest.java
│ │ │ └── InputFieldListChoiceModeTest.java
│ │ └── fix
│ │ └── itests
│ │ ├── DynamicListFieldTitleGenerateFixTest.java
│ │ ├── DynamicListItemTitleGenerateFixTest.java
│ │ └── FormFixTestBase.java
└── workspace
│ ├── DataCompositionConditionalAppearanceUse
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── TestCatalog1
│ │ │ ├── Forms
│ │ │ │ └── ListForm
│ │ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ │ └── Form.form
│ │ │ └── TestCatalog1.mdo
│ │ ├── TestCatalog2
│ │ │ ├── Forms
│ │ │ │ └── ListForm
│ │ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ │ └── Form.form
│ │ │ └── TestCatalog2.mdo
│ │ ├── TestCatalog3
│ │ │ ├── Forms
│ │ │ │ └── ItemForm
│ │ │ │ │ ├── ConditionalAppearance.dcssca
│ │ │ │ │ └── Form.form
│ │ │ └── TestCatalog3.mdo
│ │ └── TestCatalog4
│ │ │ ├── Forms
│ │ │ └── ItemForm
│ │ │ │ └── Form.form
│ │ │ └── TestCatalog4.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── FormCommandsSingleEventHandlerCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Catalog
│ │ │ ├── Catalog.mdo
│ │ │ └── Forms
│ │ │ ├── CompliantForm
│ │ │ ├── Form.form
│ │ │ └── Module.bsl
│ │ │ └── NonCompliantForm
│ │ │ ├── Attributes
│ │ │ └── List
│ │ │ │ └── ExtInfo
│ │ │ │ └── ListSettings.dcss
│ │ │ ├── Form.form
│ │ │ └── Module.bsl
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── FormDynamicListItemTitle
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ ├── Forms
│ │ │ ├── ListForm
│ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ ├── ListFormPackage
│ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── ListFormSelectAll
│ │ │ │ ├── Attributes
│ │ │ │ └── List
│ │ │ │ │ └── ExtInfo
│ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── Products.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── FormItemVisibleSettingsByRoles
│ ├── .project
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ ├── TestForm1
│ │ │ ├── Form.form
│ │ │ └── TestForm1.mdo
│ │ ├── TestForm2
│ │ │ ├── Form.form
│ │ │ └── TestForm2.mdo
│ │ ├── TestForm3
│ │ │ ├── Form.form
│ │ │ └── TestForm3.mdo
│ │ ├── TestForm4
│ │ │ ├── Form.form
│ │ │ └── TestForm4.mdo
│ │ └── TestForm5
│ │ │ ├── Form.form
│ │ │ └── TestForm5.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ ├── TestRole1
│ │ ├── Rights.rights
│ │ └── TestRole1.mdo
│ │ └── TestRole2
│ │ ├── Rights.rights
│ │ └── TestRole2.mdo
│ ├── FormItemsSingleEventHandler
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ ├── TestFormWithIssue
│ │ │ ├── Form.form
│ │ │ ├── Module.bsl
│ │ │ └── TestFormWithIssue.mdo
│ │ └── TestFormWithoutIssue
│ │ │ ├── Form.form
│ │ │ ├── Module.bsl
│ │ │ └── TestFormWithoutIssue.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── FormListFieldRefNotAdded
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── TestCatalog
│ │ │ ├── Forms
│ │ │ └── TestListForm
│ │ │ │ ├── Attributes
│ │ │ │ └── List
│ │ │ │ │ └── ExtInfo
│ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── TestCatalog.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── FormListRefUseAlwaysFlagDisabled
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── TestCatalog
│ │ │ ├── Forms
│ │ │ ├── TestCustomListForm
│ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ ├── TestCustomListFormRu
│ │ │ │ ├── Attributes
│ │ │ │ │ └── Список
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ ├── TestListForm
│ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── TestListFormRu
│ │ │ │ ├── Attributes
│ │ │ │ └── Список
│ │ │ │ │ └── ExtInfo
│ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── TestCatalog.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── InformationRegisters
│ │ └── TestInformationRegister
│ │ ├── Forms
│ │ └── TestListForm
│ │ │ ├── Attributes
│ │ │ └── List
│ │ │ │ └── ExtInfo
│ │ │ │ └── ListSettings.dcss
│ │ │ └── Form.form
│ │ └── TestInformationRegister.mdo
│ ├── FormListRefUserVisibilityEnabled
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── TestCatalog
│ │ │ ├── Forms
│ │ │ ├── TestListForm
│ │ │ │ ├── Attributes
│ │ │ │ │ └── List
│ │ │ │ │ │ └── ExtInfo
│ │ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── TestListFormRu
│ │ │ │ ├── Attributes
│ │ │ │ └── Список
│ │ │ │ │ └── ExtInfo
│ │ │ │ │ └── ListSettings.dcss
│ │ │ │ └── Form.form
│ │ │ └── TestCatalog.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ └── InputFieldListChoiceMode
│ ├── .project
│ ├── .settings
│ ├── com.e1c.v8codestyle.autosort.prefs
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── CommonForms
│ └── Form
│ │ ├── Form.form
│ │ └── Form.mdo
│ └── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
├── com.e1c.v8codestyle.md.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── md
│ │ ├── check
│ │ └── itests
│ │ │ ├── CheckDescriptionTest.java
│ │ │ ├── DbObjectAnyRefTypeCheckTest.java
│ │ │ ├── DbObjectMaxNumberLengthCheckTest.java
│ │ │ ├── DbObjectRefNonRefTypesCheckTest.java
│ │ │ ├── ExtensionMdObjectNamePrefixCheckTest.java
│ │ │ ├── MdListObjectPresentationCheckTest.java
│ │ │ ├── MdObjectAttributeCommentCheckTest.java
│ │ │ ├── MdObjectAttributeCommentNotExistCheckTest.java
│ │ │ ├── MdObjectNameLengthTest.java
│ │ │ ├── MdObjectNameUnallowedLetterCheckTest.java
│ │ │ ├── MdStandardAttributeSynonymEmptyTest.java
│ │ │ └── UnsafePasswordStorageCheckTest.java
│ │ ├── commonmodule
│ │ └── check
│ │ │ └── itests
│ │ │ ├── CommonModuleNameCachedCheckTest.java
│ │ │ ├── CommonModuleNameClientCachedCheckTest.java
│ │ │ ├── CommonModuleNameClientServerTest.java
│ │ │ ├── CommonModuleNameClientTest.java
│ │ │ ├── CommonModuleNameGlobalClientCheckTest.java
│ │ │ ├── CommonModuleNameGlobalTest.java
│ │ │ ├── CommonModuleNamePrivilegedCheckTest.java
│ │ │ ├── CommonModuleNameServerCallCachedCheckTest.java
│ │ │ ├── CommonModuleNameServerCallCheckTest.java
│ │ │ └── CommonModuleTypeTest.java
│ │ ├── configuration
│ │ └── check
│ │ │ └── itests
│ │ │ └── ConfigurationDataLockTest.java
│ │ ├── document
│ │ └── check
│ │ │ └── itests
│ │ │ └── DocumentPostInPrivilegedModeCheckTest.java
│ │ ├── functionaloption
│ │ └── check
│ │ │ └── itests
│ │ │ └── FunctionalOptionPrivilegedGetModeTest.java
│ │ ├── register
│ │ └── check
│ │ │ └── itests
│ │ │ └── RegisterResourcePrecisionTest.java
│ │ ├── scheduledjob
│ │ └── check
│ │ │ └── itests
│ │ │ ├── MdScheduledJobPeriodicityCheckTest.java
│ │ │ └── ScheduledJobDescriptionCheckTest.java
│ │ └── subsystem
│ │ └── check
│ │ └── itests
│ │ └── SubsystemSynonymTooLongCheckTest.java
└── workspace
│ ├── CommonModuleName
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── CommonModuleName
│ │ │ └── CommonModuleName.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── CommonModuleType
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ ├── Common
│ │ │ └── Common.mdo
│ │ ├── CommonClient
│ │ │ └── CommonClient.mdo
│ │ ├── CommonClientGlobal
│ │ │ └── CommonClientGlobal.mdo
│ │ ├── CommonServerCall
│ │ │ └── CommonServerCall.mdo
│ │ ├── CommonServerClient
│ │ │ └── CommonServerClient.mdo
│ │ ├── CommonServerFullAccess
│ │ │ └── CommonServerFullAccess.mdo
│ │ └── CommonServerGlobal
│ │ │ └── CommonServerGlobal.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── DataLock
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── DocumentPostInPrivilegedMode
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── AccumulationRegisters
│ │ └── TestAccRegister
│ │ │ └── TestAccRegister.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Documents
│ │ ├── TestDocument1
│ │ └── TestDocument1.mdo
│ │ ├── TestDocument2
│ │ └── TestDocument2.mdo
│ │ ├── TestDocument3
│ │ └── TestDocument3.mdo
│ │ ├── TestDocument4
│ │ └── TestDocument4.mdo
│ │ └── TestDocument5
│ │ └── TestDocument5.mdo
│ ├── ExtensionObjectNamePrefixCheck
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── Catalog
│ │ │ └── Catalog.mdo
│ │ ├── CatalogCommand
│ │ │ ├── CatalogCommand.mdo
│ │ │ └── Commands
│ │ │ │ └── Command
│ │ │ │ └── CommandModule.bsl
│ │ ├── CatalogCommandNonCompliant
│ │ │ └── CatalogCommandNonCompliant.mdo
│ │ ├── CatalogFormCompliant
│ │ │ ├── CatalogFormCompliant.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ └── Form.form
│ │ ├── CatalogFormNonCompliant
│ │ │ ├── CatalogFormNonCompliant.mdo
│ │ │ └── Forms
│ │ │ │ └── ItemForm
│ │ │ │ └── Form.form
│ │ ├── CatalogTabular
│ │ │ └── CatalogTabular.mdo
│ │ ├── CatalogTabularNonCompliant
│ │ │ └── CatalogTabularNonCompliant.mdo
│ │ ├── CatalogTemplateCompliant
│ │ │ ├── CatalogTemplateCompliant.mdo
│ │ │ └── Templates
│ │ │ │ └── Template
│ │ │ │ └── Template.mxlx
│ │ └── CatalogTemplateNonCompliant
│ │ │ ├── CatalogTemplateNonCompliant.mdo
│ │ │ └── Templates
│ │ │ └── Template
│ │ │ └── Template.mxlx
│ │ ├── CommonModules
│ │ └── Compliant
│ │ │ ├── Compliant.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Documents
│ │ ├── Document
│ │ └── Document.mdo
│ │ └── DocumentNonCompliant
│ │ └── DocumentNonCompliant.mdo
│ ├── ExtensionObjectNamePrefixCheck_Extension
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── Catalog
│ │ │ └── Catalog.mdo
│ │ ├── CatalogCommand
│ │ │ ├── CatalogCommand.mdo
│ │ │ └── Commands
│ │ │ │ └── Ext1_Command
│ │ │ │ └── CommandModule.bsl
│ │ ├── CatalogCommandNonCompliant
│ │ │ ├── CatalogCommandNonCompliant.mdo
│ │ │ └── Commands
│ │ │ │ └── C1_Command
│ │ │ │ └── CommandModule.bsl
│ │ ├── CatalogFormCompliant
│ │ │ ├── CatalogFormCompliant.mdo
│ │ │ └── Forms
│ │ │ │ ├── Ext1_ItemForm
│ │ │ │ └── Form.form
│ │ │ │ └── ItemForm
│ │ │ │ ├── BaseForm
│ │ │ │ └── Form.form
│ │ │ │ └── Form.form
│ │ ├── CatalogFormNonCompliant
│ │ │ ├── CatalogFormNonCompliant.mdo
│ │ │ └── Forms
│ │ │ │ ├── ItemForm
│ │ │ │ ├── BaseForm
│ │ │ │ │ └── Form.form
│ │ │ │ └── Form.form
│ │ │ │ └── NonPref_ItemForm
│ │ │ │ ├── Form.form
│ │ │ │ └── Module.bsl
│ │ ├── CatalogTabular
│ │ │ └── CatalogTabular.mdo
│ │ ├── CatalogTabularNonCompliant
│ │ │ └── CatalogTabularNonCompliant.mdo
│ │ ├── CatalogTemplateCompliant
│ │ │ ├── CatalogTemplateCompliant.mdo
│ │ │ └── Templates
│ │ │ │ ├── Ext1_Template
│ │ │ │ └── Template.mxlx
│ │ │ │ └── Template
│ │ │ │ └── Template.mxlx
│ │ └── CatalogTemplateNonCompliant
│ │ │ ├── CatalogTemplateNonCompliant.mdo
│ │ │ └── Templates
│ │ │ ├── T1_Template
│ │ │ └── Template.mxlx
│ │ │ └── Template
│ │ │ └── Template.mxlx
│ │ ├── CommonModules
│ │ ├── Compliant
│ │ │ ├── Compliant.mdo
│ │ │ └── Module.bsl
│ │ ├── Ext1_Compliant
│ │ │ ├── Ext1_Compliant.mdo
│ │ │ └── Module.bsl
│ │ └── NonCompliant
│ │ │ ├── Module.bsl
│ │ │ └── NonCompliant.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Documents
│ │ ├── Document
│ │ └── Document.mdo
│ │ └── DocumentNonCompliant
│ │ └── DocumentNonCompliant.mdo
│ ├── FunctionalOptionPrivilegedGetMode
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ ├── Constants
│ │ ├── UseOrganisations
│ │ │ └── UseOrganisations.mdo
│ │ └── UseWH
│ │ │ └── UseWH.mdo
│ │ └── FunctionalOptions
│ │ ├── UseFinPlan
│ │ └── UseFinPlan.mdo
│ │ ├── UseOrganisations
│ │ └── UseOrganisations.mdo
│ │ └── UseWH
│ │ └── UseWH.mdo
│ ├── MdAnyRefType
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── AnyRefTest
│ │ │ └── AnyRefTest.mdo
│ │ └── RefTest
│ │ │ └── RefTest.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── MdCompositeTypeCheck
│ ├── .project
│ ├── .settings
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── OnlyOneTypeTest
│ │ │ └── OnlyOneTypeTest.mdo
│ │ ├── RefAndOtherTest
│ │ │ └── RefAndOtherTest.mdo
│ │ └── RefTest
│ │ │ └── RefTest.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── MdListObjectPresentation
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ └── Products.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── InformationRegisters
│ │ └── Prices
│ │ └── Prices.mdo
│ ├── MdNumberMaxLength
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Test
│ │ │ └── Test.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── DefinedTypes
│ │ ├── Correct
│ │ └── Correct.mdo
│ │ └── TooLong
│ │ └── TooLong.mdo
│ ├── MdObjectAttributeComment
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── TestCatalog1
│ │ │ └── TestCatalog1.mdo
│ │ └── TestCatalog2
│ │ │ └── TestCatalog2.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Documents
│ │ ├── TestDocument1
│ │ └── TestDocument1.mdo
│ │ ├── TestDocument2
│ │ └── TestDocument2.mdo
│ │ └── TestDocument3
│ │ └── TestDocument3.mdo
│ ├── MdObjectAttributeCommentNotExist
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── TestCatalog1
│ │ │ └── TestCatalog1.mdo
│ │ └── TestCatalog2
│ │ │ └── TestCatalog2.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Documents
│ │ ├── TestDocument1
│ │ └── TestDocument1.mdo
│ │ ├── TestDocument2
│ │ └── TestDocument2.mdo
│ │ └── TestDocument3
│ │ └── TestDocument3.mdo
│ ├── MdObjectNameLength
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ ├── com._1c.g5.v8.dt.check.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ └── Products.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── MdObjectNameUnallowedLetter
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── ТестовыйКаталог
│ │ │ └── ТестовыйКаталог.mdo
│ │ ├── ТестовыйКаталог_комментарий
│ │ │ └── ТестовыйКаталог_комментарий.mdo
│ │ ├── ТестовыйКаталог_синоним
│ │ │ └── ТестовыйКаталог_синоним.mdo
│ │ └── ТестовыйКаталог_ё_имя
│ │ │ └── ТестовыйКаталог_ё_имя.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── MdScheduledJobPeriodicity
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── ScheduledJobs
│ │ ├── ScheduledJobWithDetailedRepeatPeriodLessOneMinute
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithDetailedRepeatPeriodLessOneMinute.mdo
│ │ ├── ScheduledJobWithDetailedRepeatPeriodMoreOneMinute
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithDetailedRepeatPeriodMoreOneMinute.mdo
│ │ ├── ScheduledJobWithEmptySchedule
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithEmptySchedule.mdo
│ │ ├── ScheduledJobWithRepeatPauseLessOneMinute
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithRepeatPauseLessOneMinute.mdo
│ │ ├── ScheduledJobWithRepeatPeriodLessOneMinute
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithRepeatPeriodLessOneMinute.mdo
│ │ └── ScheduledJobWithRepeatPeriodMoreOneMinute
│ │ ├── Schedule.schedule
│ │ └── ScheduledJobWithRepeatPeriodMoreOneMinute.mdo
│ ├── MdStandardAttributeSynonymEmpty
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ ├── NegativeOwnerTest
│ │ │ └── NegativeOwnerTest.mdo
│ │ ├── NegativeOwnerTestWithComment
│ │ │ └── NegativeOwnerTestWithComment.mdo
│ │ ├── NegativeParentTest
│ │ │ └── NegativeParentTest.mdo
│ │ ├── NegativeParentTestWithComment
│ │ │ └── NegativeParentTestWithComment.mdo
│ │ ├── PositiveOwnerTest
│ │ │ └── PositiveOwnerTest.mdo
│ │ └── PositiveParentTest
│ │ │ └── PositiveParentTest.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── RegisterResourcePrecision
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── AccountingRegisters
│ │ ├── AccountingRegisterTest
│ │ │ └── AccountingRegisterTest.mdo
│ │ └── AccountingRegisterWithDefinedTypeTest
│ │ │ └── AccountingRegisterWithDefinedTypeTest.mdo
│ │ ├── AccumulationRegisters
│ │ └── AccumulationRegisterTest
│ │ │ └── AccumulationRegisterTest.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ ├── DefinedTypes
│ │ ├── CorrectType
│ │ │ └── CorrectType.mdo
│ │ └── WrongType
│ │ │ └── WrongType.mdo
│ │ └── Documents
│ │ └── DocumentTest
│ │ └── DocumentTest.mdo
│ ├── ScheduledJobs
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonModules
│ │ └── Jobs
│ │ │ ├── Jobs.mdo
│ │ │ └── Module.bsl
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── ScheduledJobs
│ │ ├── NotPredefinedJob
│ │ ├── NotPredefinedJob.mdo
│ │ └── Schedule.schedule
│ │ └── PredefinedJob
│ │ ├── PredefinedJob.mdo
│ │ └── Schedule.schedule
│ ├── SubsystemSynonymTooLong
│ ├── .project
│ ├── .settings
│ │ ├── Default.cset
│ │ ├── com.e1c.v8codestyle.autosort.prefs
│ │ ├── com.e1c.v8codestyle.bsl.prefs
│ │ ├── com.e1c.v8codestyle.prefs
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Subsystems
│ │ ├── TopLongDeIncluded
│ │ ├── CommandInterface.cmi
│ │ └── TopLongDeIncluded.mdo
│ │ ├── TopLongEnIncluded
│ │ ├── CommandInterface.cmi
│ │ ├── Subsystems
│ │ │ └── SubLong
│ │ │ │ ├── CommandInterface.cmi
│ │ │ │ └── SubLong.mdo
│ │ └── TopLongEnIncluded.mdo
│ │ ├── TopLongNotIncluded
│ │ ├── CommandInterface.cmi
│ │ └── TopLongNotIncluded.mdo
│ │ ├── TopLongRuEnDeIncluded
│ │ ├── CommandInterface.cmi
│ │ └── TopLongRuEnDeIncluded.mdo
│ │ └── TopShortEnRuDe
│ │ ├── CommandInterface.cmi
│ │ └── TopShortEnRuDe.mdo
│ └── UnsafePasswordStorage
│ ├── .project
│ ├── .settings
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── Catalogs
│ └── Catalog
│ │ └── Catalog.mdo
│ ├── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
│ ├── Constants
│ └── Constant
│ │ └── Constant.mdo
│ └── Documents
│ └── Document
│ └── Document.mdo
├── com.e1c.v8codestyle.ql.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── resources
│ ├── ql-constants-in-binary-operation
│ │ ├── compliant.ql
│ │ └── non-compliant.ql
│ ├── ql-like-expression-with-field
│ │ ├── compliant.ql
│ │ └── non-compliant.ql
│ ├── ql-virtual-table-filters-compliant.ql
│ ├── ql-virtual-table-filters.ql
│ ├── temp-table-has-index.ql
│ ├── temp-table-has-no-index-top.ql
│ └── temp-table-has-no-index.ql
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ └── ql
│ │ └── check
│ │ └── itests
│ │ ├── AbstractQueryTestBase.java
│ │ ├── CamelCaseStringLiteralTest.java
│ │ ├── CastToMaxNumberTest.java
│ │ ├── CheckDescriptionTest.java
│ │ ├── ConstantsInBinaryOperationTest.java
│ │ ├── JoinToSubQueryTest.java
│ │ ├── LikeExpressionWithFieldTest.java
│ │ ├── TempTableHasIndexTest.java
│ │ ├── TestingCheckParameters.java
│ │ ├── TestingCheckResultAcceptor.java
│ │ ├── TestingQlResultAcceptor.java
│ │ ├── UsingForUpdateTest.java
│ │ └── VirtualTableFiltersCheckTest.java
└── workspace
│ ├── CastToMaxNumber
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Attributes
│ │ │ └── List
│ │ │ │ └── ExtInfo
│ │ │ │ └── ListSettings.dcss
│ │ │ ├── Form.form
│ │ │ └── Form.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── JoinToSubQuery
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Attributes
│ │ │ └── List
│ │ │ │ └── ExtInfo
│ │ │ │ └── ListSettings.dcss
│ │ │ ├── Form.form
│ │ │ └── Form.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── QlEmptyProject
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ ├── QlFullDemo
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── AccumulationRegisters
│ │ └── Stocks
│ │ │ └── Stocks.mdo
│ │ ├── Catalogs
│ │ └── Products
│ │ │ └── Products.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ ├── Documents
│ │ └── ProductArraival
│ │ │ └── ProductArraival.mdo
│ │ ├── Enums
│ │ └── ProductType
│ │ │ └── ProductType.mdo
│ │ ├── InformationRegisters
│ │ └── Prices
│ │ │ └── Prices.mdo
│ │ └── Reports
│ │ └── QueryTestReport
│ │ ├── QueryTestReport.mdo
│ │ └── Templates
│ │ └── MainDataCompositionSchema
│ │ └── Template.dcs
│ ├── StringLiteralCameCase
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── CommonForms
│ │ └── Form
│ │ │ ├── Attributes
│ │ │ └── List
│ │ │ │ └── ExtInfo
│ │ │ │ └── ListSettings.dcss
│ │ │ ├── Form.form
│ │ │ └── Form.mdo
│ │ └── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ └── UsingForUpdate
│ ├── .project
│ ├── .settings
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── CommonForms
│ └── Form
│ │ ├── Attributes
│ │ └── List
│ │ │ └── ExtInfo
│ │ │ └── ListSettings.dcss
│ │ ├── Form.form
│ │ └── Form.mdo
│ └── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
├── com.e1c.v8codestyle.right.itests
├── .classpath
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── fragment.properties
├── pom.xml
├── src
│ └── com
│ │ └── e1c
│ │ └── v8codestyle
│ │ ├── internal
│ │ └── right
│ │ │ └── itests
│ │ │ ├── CheckExternalDependenciesModule.java
│ │ │ └── CheckRights.java
│ │ └── right
│ │ └── check
│ │ └── itests
│ │ ├── CheckDescriptionTest.java
│ │ ├── RightActiveUsersTest.java
│ │ ├── RightAdministrationTest.java
│ │ ├── RightAllFunctionsModeTest.java
│ │ ├── RightConfigurationExtensionsAdministrationTest.java
│ │ ├── RightDataAdministrationTest.java
│ │ ├── RightExclusiveModeTest.java
│ │ ├── RightInteractiveOpenExternalDataProcessorsTest.java
│ │ ├── RightInteractiveOpenExternalReportsTest.java
│ │ ├── RightOutputToPrinterFileClipboardTest.java
│ │ ├── RightSaveUserDataTest.java
│ │ ├── RightStartAutomationTest.java
│ │ ├── RightStartExternalConnectionTest.java
│ │ ├── RightStartThickClientTest.java
│ │ ├── RightStartThinClientTest.java
│ │ ├── RightStartWebClientTest.java
│ │ ├── RightUpdateDatabaseConfigurationTest.java
│ │ ├── RightViewEventLogTest.java
│ │ ├── RoleRightHasForbiddenTest.java
│ │ └── RoleRightHasRlsTest.java
└── workspace
│ ├── RoleRightHasForbidden
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ └── Products.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ ├── AllowedRights
│ │ ├── AllowedRights.mdo
│ │ └── Rights.rights
│ │ ├── ForbiddenRights
│ │ ├── ForbiddenRights.mdo
│ │ └── Rights.rights
│ │ └── FullAccess
│ │ ├── FullAccess.mdo
│ │ └── Rights.rights
│ ├── RoleRightHasRls
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ │ └── PROJECT.PMF
│ └── src
│ │ ├── Catalogs
│ │ └── Products
│ │ │ └── Products.mdo
│ │ ├── Configuration
│ │ ├── CommandInterface.cmi
│ │ ├── Configuration.mdo
│ │ └── MainSectionCommandInterface.cmi
│ │ └── Roles
│ │ ├── FullAccess
│ │ ├── FullAccess.mdo
│ │ └── Rights.rights
│ │ ├── OtherRls
│ │ ├── OtherRls.mdo
│ │ └── Rights.rights
│ │ └── SystemAdministrator
│ │ ├── Rights.rights
│ │ └── SystemAdministrator.mdo
│ └── StandardRoles
│ ├── .project
│ ├── .settings
│ └── org.eclipse.core.resources.prefs
│ ├── DT-INF
│ └── PROJECT.PMF
│ └── src
│ ├── Configuration
│ ├── CommandInterface.cmi
│ ├── Configuration.mdo
│ └── MainSectionCommandInterface.cmi
│ └── Roles
│ └── StandardRole
│ ├── Rights.rights
│ └── StandardRole.mdo
└── pom.xml
/bom/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | bom
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/bom/.settings/org.eclipse.core.resources.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | encoding/=UTF-8
3 |
--------------------------------------------------------------------------------
/bom/html/footer.html:
--------------------------------------------------------------------------------
1 |
3 |