hi again,

 sorry if I'm bothering you, I just want to make sure you get all variants
 of this nasty bug, so here's another:
 it seems to me that getter-methods inherited via an interface
 are hidden when the 'show properties' option is selected.
 looks like you're filtering by name first and then remove the getters
 for which there is no attribute.
 
 MyClass.getCount() is hidden if 'show properties' option is active
 getCount() & doSomething() are hidden if 'group overriding methods' is
active
 
interface MyInterface {
    public int getCount();
    public int doSomething();
}

class MyClass implements MyInterface {
    public int getCount() {
        return 0;
    }
    public int getValue() {
        return 0;
    }
    public void doSomething() {
    }
}


 regards
 Frank Bruch
 


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to