JDE 2.1.6 final / NT Emacs 20.6 / Windows NT 4.0

Some methods are still not showing up in the classes menu.  The code
below shows which combinations of modifiers are being parsed correctly
and which ones aren't.

Mike
[EMAIL PROTECTED]
==================

public class foo {
    // All of these are ok
    private int a;
    private final int b = 0;
    private transient int c;
    private transient final int d = 0;
    private static int e;
    static int f;
    private static transient int g;
    static int h;

    // All of these fail to show up in the menu
    private volatile int j;
    private static volatile int k;
    private static transient volatile int m;

    // ok
    public foo() {
    }

    // fail
    public foo( int someInts[] ) {
    }

    // ok
    public void one() {
    }

    // fail
    public void two( int anInt[] ) {
    }

    //fail
    public void three( final int anInt ) {
    }

    //fail
    public final void four( int anInt ) {
    }

    // ok
    public synchronized void five() {
    }
}


Reply via email to