1 5 package test.jdo; 6 7 import java.math.BigDecimal ; 8 import java.util.ArrayList ; 9 import java.util.HashMap ; 10 import java.util.List ; 11 import java.util.Map ; 12 13 42 public class Super { 43 57 private int superInt; 58 59 64 private String superString; 65 66 67 72 private BigDecimal superBigDecimal; 73 74 92 private List superList = new ArrayList (); 93 94 115 private Map superMap = new HashMap (); 116 117 134 private SuperChild[] superChildren = new SuperChild[10]; 135 136 146 private List StringList = new ArrayList (); 147 148 163 private Map lengthMap = new HashMap (); 164 165 } 166 | Popular Tags |