This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 123560

Summary: ability to disable the seperate blank line formatting options
Product: java Reporter: jaarts <jaarts>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description jaarts 2007-12-06 11:34:38 UTC
Options > Java code > Formatting > Blank lines

I would like to be able to disable certain blank line formatting options. For instance, i want to group fields together
and separate those groups with blank lines, like:
...
public int x;
public int y;

private Object o;

private Object f;
private String s;
...

Currently it is only possible to put the same amount of blank lines between each field.