Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/documentation/programming-standard.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,17 @@ Table - EXT001
API - EXT001MI

#### Methods
- Method name should follow Java naming convention for methods
- Method name should follow Java naming convention for methods
- Names should be in lowerCamelCase, using no underscores and starting with a letter
- Only alphanumeric characters should be used. Alphanumeric characters include the letters a-z, either upper case or lower case, and the numerals 0-9
- Should be simple and descriptive:
validateDate,
validateType

#### Variables and Constants
- Variables and constants should follow Java naming convention
- Variables and constants should be in lowerCamelCase, using no underscores and starting with a letter
- Only alphanumeric characters should be used. Alphanumeric characters include the letters a-z, either upper case or lower case, and the numerals 0-9
- should be simple and descriptive: inValidDate, outValidDateType
- Variables should be in lowerCamelCase and constants in CAPITAL_CONSTANTS

## Extension Structure
Expand Down