Tagged Questions
The jalopy tag has no wiki summary.
2
votes
3answers
90 views
Why does Jalopy format my Java code this way?
When I type an entry for an array in java this way, Jalopy (an alternate program to Jindent) switches the square bracket to the other side. Am I typing the wrong way or what?
Before formating:
...
2
votes
3answers
2k views
Is the Open Source Jalopy Eclipse plugin compatible with Ganymede?
After much searching, I found the download for the eclipse version of jalopy. Is this compatible with Eclipse 3.4? It's dated 2006.
I've copied the extracted folder to my plugins directory and run ...
1
vote
2answers
78 views
Jalopy comments indentation
We use jalopy to format our code to the sun standard (well 99%).
I have 1 issue with it. It keeps moving comments to the right of the line.
E.g
// Panel
"JPanel.border", new LazyValue(packageName ...
0
votes
3answers
52 views
Jalopy 1.9.4 and Eclipse (Indigo)
I have Jalopy 1.9.4 installed for eclipse (Indigo), jdk 1.5.
None of the options under jalopy's 'Java - Code generation' have been selected. This doesn't make any difference to jalopy. It inserts, ...
0
votes
1answer
49 views
Eclipse code formatting: is there a way to add “section lines”
i use jalopy (the free version) to do my code-formatting, but i would like to convert to eclipse. There are two jalopy features, though, i like very much, is it possible to have them in eclipse?
...
0
votes
0answers
97 views
Does Jalopy Work in Eclipse Helios and/or Indigo
I used to use Jalopy in Eclipse and really liked the degree of control it gave you over the formatting. When I upgraded Eclipse to Ganymede and then Helios, I started using the built-in Java ...
0
votes
1answer
222 views
ClassFormatError - Surefire?
When I attempt to deploy artifacts, I get a ClassFormatError for my projects that do have tests:
[INFO] --- maven-surefire-plugin:2.5:test (default-test) @ ssh-exec ---
[INFO] Concurrency config is ...
0
votes
3answers
121 views
Jalopy to format return/throw statements
I would like Jalopy to format my return and throw statements such that they look like a method call since they are:
return(true);
throw(new IllegalArgumentException("You can't do that, what we you ...