Coding Guidelines

  1. fields must be in alphabetical order
  2. you must be careful while generating getters and setters. ie they must not overlap fields ie. all the getters and setters must follow all the fields.
  3. variable and method names must be relevant . no matter how long they are. The names must be well thought of. Once it is final. no changes should be done after that. because it breaks the whole code. and we may have to perform a number of test.
  4. all constants must be in capital letters at all places.
  5. one method must do only one thing
  6. super class must have all the methods and fields that a subclass has and subclass must have extra fields or methods if any.
  7. possible exception must be handled
  8. unit test cases are must
  9. uml use case scenarios must be created before coding
  10. all the code should be part of github repository
  11. all live project must be on aws

No comments:

Post a Comment