Exemplo n.º 1
0
 public void clearMaps() throws IOException {
   map.clear();
   thread.scheduleComputeMap();
 }
Exemplo n.º 2
0
 public void addMapLocation(File location) throws IOException {
   if (location.isDirectory()) map.addDirectory(location);
   else map.addFile(location);
   thread.scheduleComputeMap();
 }