Entity.java (117B)
1 package osm.message; 2 3 import osm.common.TagMap; 4 5 public interface Entity { 6 long getID(); 7 8 TagMap getTags(); 9 }