Ejemplo n.º 1
0
 public static <T> ConstrainedLocation<T> make(Location<T> base, Procedure converter) {
   ConstrainedLocation<T> cloc = new ConstrainedLocation<T>();
   cloc.base = base;
   cloc.converter = converter;
   return cloc;
 }