A nice feature would be if idea kept track of dependencies between
classes. For example, if I make two classes Foo and Bar like this:
public class Foo {
public static void main( String[] args ) {
foo();
}
public static void foo() {
Bar.bar();
}
}
public class Bar {
public static void bar() {
}
}
everything works fine. But when you add a parameter to the Bar.bar
method and compile the modified Bar class, the compiler doesn't complain
because Foo is not recompiled. Running Foo then gives you a
NoSuchMethodError. Would it be feasible to make Idea keep track of this
kind of dependency and then try to compile Foo when I compile the
changed Bar class?
Pepijn Van Eeckhoudt
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features