Posted By:
a_a
Posted On:
Thursday, June 28, 2007 03:09 PM
I just got JBuilder Turbo 2007, and I can't figure out how to make the closing brace of my classes and methods indented. This is how I want my code to look: public class MyClass { private int myInt; public MyClass(int val) { myInt = val; } public int getMyInt() { return myInt; } } This is how it currently looks: public class MyClass { private int myInt; public MyClass(int val) { myInt = val; } public int getMyInt() { return myInt; } }
More>>
I just got JBuilder Turbo 2007, and I can't figure out how to make the closing brace of my classes and methods indented.
This is how I want my code to look:
public class MyClass {
private int myInt;
public MyClass(int val) {
myInt = val;
}
public int getMyInt() {
return myInt;
}
}
This is how it currently looks:
public class MyClass {
private int myInt;
public MyClass(int val) {
myInt = val;
}
public int getMyInt() {
return myInt;
}
}
<<Less