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 236067 - No "same line, indented" option in java braces placement
Summary: No "same line, indented" option in java braces placement
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.0
Hardware: PC All
: P3 normal with 1 vote (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-17 11:53 UTC by chazz422
Modified: 2013-09-17 14:05 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description chazz422 2013-09-17 11:53:26 UTC
There is no "Same line, indented" option in the java braces placement options.  This is to support banner-style braces.  Here's an example:

public class Foo {
    public void main (String[] args) {
        System.out.println ("Inside main method");
        System.exit (0);
        }
    }

All of our source code in version control uses this banner style braces and the code generator in netbeans has no option to directly support this.