Ejemplo n.º 1
0
 public void pushConverter(Procedure paramProcedure) {
   this.loc = ConstrainedLocation.make(this.loc, paramProcedure);
 }
Ejemplo n.º 2
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;
 }