This rule is Obsolete | |
Synopsis: | Use naming conventions for variables |
Language: | Java |
Severity Level: | 4 |
Category: | Naming |
Description: |
A variable naming conventions rule - customize this to your liking. Currently, it
checks for static final variables and final interface variables that should be fully capitalized and non-final variables
should start with a small letter.public class Foo { public static final int MY_NUM = 0; public String myTest = ""; DataModule dmTest = new DataModule(); } |
Literature References: |
Google Android Guidelines |