From 53b20e7f3f593c0914908773df2169ca4198e8dd Mon Sep 17 00:00:00 2001 From: crispinenricoubaldo <73271807+crispinenricoubaldo@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:57:27 +0800 Subject: [PATCH] Update programming-standard.md as per Reylan Reyes Updated descriptions in section Variables and Constants as per Reylan Reyes --- docs/documentation/programming-standard.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/documentation/programming-standard.md b/docs/documentation/programming-standard.md index adfdebf..d85d433 100644 --- a/docs/documentation/programming-standard.md +++ b/docs/documentation/programming-standard.md @@ -132,7 +132,7 @@ 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: @@ -140,7 +140,9 @@ 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