Tagged Questions
8
votes
4answers
7k views
public static final variable in an imported java class
I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB.
ClassA has nothing except 4 public static final string values inside it. Its ...
5
votes
4answers
164 views
Git workflow - changing branch and slow recompiles
I work on a large Scala project where we use Git for version control. My workflow is to work on new features in my own branch and switch when needed. Various releases of the code are in their own ...
4
votes
6answers
265 views
Adding implementation without recompiling in Java?
Hey everyone, I'm a college senior with my first real job opportunity (exciting). I'm at the stage now where they need to see a programming example, and they gave me the task of implementing a random ...
4
votes
3answers
3k views
Recompile decompiled Java (JD / JAD) source that contains goto instructions
(Related question: http://stackoverflow.com/questions/992930/java-compilers-or-jvm-languages-that-support-goto)
I have decompiled a jar (Legally, for debugging purposes) and want to recompile it.
...
4
votes
6answers
6k views
How can you force recompilation of jsps in JBoss 4.2?
I hit on this nasty behavior on JBoss 4.2 in QA, and I want to nip it in the bud before we go into production and find some other corner case.
A jsp calles a method that had the following signature:
...
2
votes
3answers
65 views
Why does javac recompile my .java although the .class is already updated?
I am told that javac is smart enough that it does not recompile the .java, in condition that this .java has a timestamp before that of .class. I just find it does not work like that in my machine, am ...
1
vote
1answer
95 views
Modifying platform/frameworks/base package
I'm planning to modify some bits in the platform/frameworks/base project in Android Donut r2. The modifications are very small and goes into java packages android.graphics and android.text (the API ...
0
votes
1answer
124 views
Can't recompile decompiled class files
I have a bit of Java I want to edit (it is a Minecraft mod) I decompiled the .class files (with jd-gui), edited what I wanted to, then attempted to recompile (with javac).
I got hundreds of errors. I ...