The parameter that causes the wrapping is Code Style> Java> [Wrapping and Braces]> "method invocation arguments". You can set Do Not Wrap if you do not want it to be wrapped. To wrap, set the value to "Wrap if Long" or "Chop down if long." See the foo1 method in the sample code to see the difference between wrapping and beating.
Wrap:
wrapped( 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057);
Chop:
chopped( 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057);
To get your first choice, so that '(' is stored with a method call (or a constructor call in this case), set the option 'new line after' ("". This will give you:
HDF5CompoundDSBridgeBuilder<WritableDataPoint> actualBridgeBuilder = new HDF5CompoundDSBridgeBuilder<>( actualReader);
To get the second option, βor better,β set Code Style> Java> Wrap and Brackets> Assignment Statements to Wrap For Long, Drop For Long, or Wrap Always . Set the value to "Wrap if long", which you get:
HDF5CompoundDSBridgeBuilder<WritableDataPoint> actualBridgeBuilder = new HDF5CompoundDSBridgeBuilder<>(actualReader);
source share