Eclipse
Java Memorandum - How to make javac to reference user library BEFORE built-in library (rt.jar)
Submitted by Nobu on 2010/07/07(Wed) 15:59
Here's the situation. I have a jar file, which is a library I need to use for an embedded Java application. Even though the embedded device only support Java 1.4, the library implements some 5.0 methods in org.w3c.dom.DOMImplementation. Because the same class is already in rt.jar for 1.4, just compiling a normal way doesn't work.
Java Memorandum - Modifying format (style) of Java code using Eclipse
Submitted by Nobu on 2010/06/24(Thu) 15:20
Coding style is very much personal, and using your favorite style improves the coding productivity.
Say, for example, someone (many Java programmer, apparently) likes the following style.
class test(){
public main(args[]){
if(a == b){
System.out.println("Hello World!");
}
}
}
