vote up 2 vote down star
1

I noticed the eclipse indenter has support for the latest version of java, and it would be nice if I could use that class to indent generated java source code. Is there a way of integrating it ?

EDIT: I need to be able to include the code formatter in my code. No external calls.

EDIT2: I've managed to get it working. You can read the story here. Thanks VonC !

flag

Awesome! I have updated my answer with the main principle of your post for future SO readers, but thank you again for your feedback on this issue. – VonC Jun 10 at 18:35

1 Answer

vote up 3 vote down check

You can try running the formatter as a standalone application (also detailed here).

eclipse -vm <path to virtual machine> -application org.eclipse.jdt.core.JavaCodeFormatter [ OPTIONS ] <files>

Try first to define formatting settings with eclipse IDE in order to achieve the right result, then export those settings, and use that configuration file in the eclipse.exe parameters.
Or see also "Generating a Config File for the Formatter Application"

eclipse [...] -config <myExportedSettings>


In a java program, you can try to directly format by:

  • Creating an instance of CodeFormatter
  • Using the method void format(aString) on this instance to format aString. It will return the formatted string.


Thanks to Geo himself and his report in his blog entry, I now know you need to use DefaultCodeFormatter

	String code = "public class geo{public static void main(String[] args){System.out.println(\"geo\");}}";
	CodeFormatter cf = new DefaultCodeFormatter();

	TextEdit te = cf.format(CodeFormatter.K_UNKNOWN, code, 0,code.length(),0,null);
	IDocument dc = new Document(code);
	try {
		te.apply(dc);
		System.out.println(dc.get());
	} catch (MalformedTreeException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (BadLocationException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}

Again, full details in the blog entry. Thank you Geo for that feedback!

link|flag
I need to include it in my code. Is that possible? – Geo Jun 10 at 14:55
"as a standalone class", but in a java program! Right, I understand now ;) Looking into it right now.. – VonC Jun 10 at 14:59
english is not my primary language. I find that some ideas are complicated for me to express :). Sorry. – Geo Jun 10 at 15:03
Well... count me in too (in the "english is not my primary language") ;) I did find the right class, but I am still unsure how to use that CodeFormatter for java format. Let me know if it helps. – VonC Jun 10 at 15:12
I'll give it a try and post the results. Thanks! – Geo Jun 10 at 15:13
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.