package org.artisanlogiciel.osm; import java.util.List; public class Way { long id; public Way(long id) { this.id = id; } public Way(long id, List ndlist) { this.id = id; this.ndlist = ndlist; } public List getNdlist() { return ndlist; } List ndlist; }