summaryrefslogtreecommitdiffstats
path: root/src/test/test4/Aaload.java
blob: 5299b485218f48653ce1f5499b42ed59fa980f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test4;
import java.awt.MenuItem;

public class Aaload {
    static void narf() {
        String[] list = null;
        for (int i = 0; i < list.length; i++) {
            String name = list[i];
            if (name.endsWith(".txt")) {
                MenuItem item = new MenuItem(name);
                item.addActionListener(null);
            }
        }
    }
}