All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osmtools.pbf.data.Way Maven / Gradle / Ivy

The newest version!
package org.osmtools.pbf.data;

import java.util.Collection;
import java.util.Date;
import java.util.List;

public class Way extends CommonData {

	private List nodes;

	public Way(long id, int version, long changesetId, Date timestamp, String user, Collection tags,
			List nodes) {
		super(id, version, changesetId, timestamp, user, tags);
		this.nodes = nodes;
	}

	public List getNodes() {
		return nodes;
	}

	public void setNodes(List nodes) {
		this.nodes = nodes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy