1 19 package org.netbeans.test.codegen; 20 21 import java.util.Comparator ; 22 23 27 public class AnonClassTestClass { 28 public void test() { 29 Object comparator = new Comparator () { 30 public int compare(Object o1, Object o2) { 31 return 0; 32 } 33 34 public boolean equals(Object o) { 35 return o == this; 36 } 37 38 public int hashCode() { 39 return super.hashCode(); 40 } 41 }; 42 } 43 } 44 | Popular Tags |