Last change
on this file since 10800 was 298, checked in by imi, 18 years ago |
- added license description to head of each source file
|
File size:
491 bytes
|
Line | |
---|
1 | // License: GPL. Copyright 2007 by Immanuel Scholz and others
|
---|
2 | package org.openstreetmap.josm.data.osm;
|
---|
3 |
|
---|
4 | import org.openstreetmap.josm.data.Bounds;
|
---|
5 |
|
---|
6 | public class DataSource implements Cloneable {
|
---|
7 | public final Bounds bounds;
|
---|
8 | public final String origin;
|
---|
9 |
|
---|
10 | public DataSource(Bounds bounds, String origin) {
|
---|
11 | this.bounds = bounds;
|
---|
12 | this.origin = origin;
|
---|
13 | }
|
---|
14 |
|
---|
15 | @Override protected Object clone() throws CloneNotSupportedException {
|
---|
16 | return new DataSource(bounds, origin);
|
---|
17 | }
|
---|
18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.