TICS Coding Standard Viewer
TIOBE Software Quality Framework
Home
|
Coding Rules
|
Categories
|
Literature
|
Change History
|
Generate PDF
|
Log in
Revision:
3.10
3.9
3.8
3.7
3.6
3.5
3.4
3.3
3.2
3.1
3.0
2.7
2.6
2.5
2.4
2.3
2.2
2.1
2.0
1.15
1.14
1.13
1.12
1.11
1.10
1.9
1.8
1.7
1.6
1.5
1.4
1.3
1.2
1.1
1.0
TIOBE - Java Coding Standard
Search
Rule: Naming3
Synopsis:
Avoid using short method names
Language:
Java
Severity Level:
6
Category:
Naming
Description:
Detects when very short method names are used.
public class ShortMethod { public void a( int i ) { // Violation } }