You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable the on/off tags (@formatter:off, @formatter:on) so that comments can be
formatted manually in exceptional cases, such as to provide an ASCII table in a
comment to describe a block of code's expected behavior to other developers,
when the formatting rules would have made the comment less readable by
collapsing whitespace and line-wrapping. This feature exists already in
Eclipse, and is enabled by this patch.
Example:
/*
* The following method returns the following results
* @formatter:off
* +-------+-------+-------------------+
* | c="a" | c="b" | anything else |
* +-------+-------+-------------------+
* | true | false | true iff f(c)>200 |
* +-------+-------+-------------------+
* @formatter:on
*/
public boolean myMethod(String c);
Original issue reported on code.google.com by ctubbsii on 15 Aug 2014 at 10:44
Original issue reported on code.google.com by
ctubbsii
on 15 Aug 2014 at 10:44Attachments:
The text was updated successfully, but these errors were encountered: