Consider the following:
package foo
abstract class Bar {
public static String field
public static String method() {}
}
class Baz extends Bar {
}
import static foo.Baz.*
f|
m|
Content assist (Ctrl+Space) proposals at f| are missing Bar.field and proposals at m| are missing Bar.method. Same goes for replacing the static import with an import favorite.
Consider the following:
Content assist (Ctrl+Space) proposals at
f|are missingBar.fieldand proposals atm|are missingBar.method. Same goes for replacing the static import with an import favorite.