001    // License: GPL. Copyright 2007 by Immanuel Scholz and others
002    package org.openstreetmap.josm.data.osm;
003    
004    import org.openstreetmap.josm.data.Bounds;
005    
006    public class DataSource {
007        public final Bounds bounds;
008        public final String origin;
009    
010        public DataSource(Bounds bounds, String origin) {
011            this.bounds = bounds;
012            this.origin = origin;
013            if (bounds == null)
014                throw new NullPointerException();
015        }
016    }