1 19 20 package org.openide.nodes; 21 22 import java.lang.ref.*; 23 import java.util.*; 24 import org.openide.ErrorManager; 25 import junit.framework.*; 26 import org.netbeans.junit.*; 27 28 public class ChildrenFilterAsKeysTest extends ChildrenKeysTest { 29 30 public ChildrenFilterAsKeysTest(java.lang.String testName) { 31 super(testName); 32 } 33 34 35 protected Node createNode (Children ch) { 36 return new FilterNode (new AbstractNode (ch)); 37 } 38 39 } 40 | Popular Tags |