Example #1
0
 public static Box create(int numTiles) {
   List<Tile> tiles = new ArrayList<>();
   for (int i = 1; i < numTiles + 1; i++) {
     tiles.add(new Tile(i));
   }
   Box box = new Box();
   box.setTiles(tiles);
   return box;
 }