java - Eclipse autoformat rule for putting the method call on the same line? -


currently style this:

            uidex reg = sink                     .connect(                             urlparts[1],                             props,                             clientinfo.getproperties(props                                     .getproperty(vjdbcproperties.clientinfo_properties)),                             new callingcontext()); 

what want be:

            uidex reg = sink.connect(                             urlparts[1],                             props,                             clientinfo.getproperties(                                     props.getproperty(                                     vjdbcproperties.clientinfo_properties)),                             new callingcontext()); 

i can't find exact option that, it? it's set "wrap when necessary". how on earth eclipse think .connect() needs on own line?


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -