it.vige.cities.result.Nodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cities-generator Show documentation
Show all versions of cities-generator Show documentation
Generate a file with the cities of your country
package it.vige.cities.result;
import java.util.ArrayList;
import java.util.List;
public class Nodes {
private List zones = new ArrayList();
public List getZones() {
return zones;
}
public void setZones(List zones) {
this.zones = zones;
}
}