Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Two styles of method parameter declaration are allowed. First style is preferred when all arguments can fit in a single line before the page delimiter (120 char limit).

 

Code Block
java
java
public void foo(Object obj1, Object obj2, Object obj3, ..., Object objN)

If arguments can't fit to single line, arguments are splitted by 120 char limit to several lines. 

 

Second style requires new line for every argument.

...