-
-
Notifications
You must be signed in to change notification settings - Fork 408
Methods
Isfirs edited this page Aug 23, 2016
·
5 revisions
- Named in
lowerCamelCaseconvention
No specification.
Do as needed or required.
- Make parameters
final - Refer to Variables
/**/
public void doSomething(final String fooBar)
{
// Method content
}
/**/- Add
white spaceto empty method arguments
/**/
public void doSomething( )
{
// Method content
}
/**/- Add one
white spaceafter,
/**/
public void doSomething(String foo, String bar)
{
// Method content
}
/**/- New line
/**/
public void doSomething( )
{
// Method content
}
/**/