I'm using an UML tool that generates Java classes from the UML class diagram. Unfortunately the code inside is not indented.
How to solve this? How can I indent a file using Eclipse?
I'm using an UML tool that generates Java classes from the UML class diagram. Unfortunately the code inside is not indented.
How to solve this? How can I indent a file using Eclipse?
How to indent a Java source file in Eclipse:
Done.
(If you also want to correct the spacing, then use Ctrl+Shift+F or right click > Source > Format. This can be applied to a single file, or a group of files using the Project Explorer pane.)
command + i ocIn fact, you can make the whole process fully automatic by invoking Eclipse plugin from command line:
eclipse -nosplash \
-application org.eclipse.jdt.core.JavaCodeFormatter \
-verbose \
-config ~/eworkspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs \
MyClass.java
Just make sure to create workspace where you have your formatting preferences set up according to your requirements.