Well-named methods

The method names should show intent. A method composed of other should almost read like a line of prose.

Methods should be short. A full method should fit on a screen.

should_methods_be_named_like_this?:

  1. is - What properties are True/False?
  2. get - What other properties can you give me?
  3. set - What properties can I change?