~ubuntu-branches/ubuntu/oneiric/mkgmap/oneiric

« back to all changes in this revision

Viewing changes to test/func/lib/TestDataSource.java

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine, Andreas Putzo, Francesco Paolo Lovergine
  • Date: 2009-07-16 11:10:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090716111016-yycxqya1f26xmti7
Tags: 0.0.0+svn1067-1
[ Andreas Putzo ]
* New upstream snapshot.
* Added ${misc:Depends} among dependencies to fix a lintian warning.
* Bumped debhelper compatibility level to 7.
* Updated long description.
* Updated Homepage in debian/control, debian/copyright, debian/watch.
* Added numerous files from /doc to debian/docs.
* Mentioned Bernhard Heibler in debian/copyright and updated copyright
  year of software and packaging.
* Bumped policy to 3.8.2, without changes.
* Added DM-Upload-Allowed to debian/control.

[ Francesco Paolo Lovergine ]
* Added me as Uploader to avoid possible inappropriate NMU notices.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Steve Ratcliffe
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 or
 
6
 * version 2 as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 */
 
13
/* Create date: 21-Feb-2009 */
 
14
package func.lib;
 
15
 
 
16
import java.util.List;
 
17
 
 
18
import uk.me.parabola.mkgmap.general.MapDataSource;
 
19
import uk.me.parabola.mkgmap.general.MapPoint;
 
20
import uk.me.parabola.mkgmap.general.MapLine;
 
21
import uk.me.parabola.mkgmap.general.MapShape;
 
22
import uk.me.parabola.mkgmap.general.RoadNetwork;
 
23
import uk.me.parabola.imgfmt.app.Area;
 
24
import uk.me.parabola.imgfmt.app.trergn.Overview;
 
25
 
 
26
/**
 
27
 * A map source that allows us to create a map to specification without
 
28
 * having a .osm file.
 
29
 * 
 
30
 * @author Steve Ratcliffe
 
31
 */
 
32
public class TestDataSource implements MapDataSource {
 
33
        public Area getBounds() {
 
34
                return null;
 
35
        }
 
36
 
 
37
        public List<MapPoint> getPoints() {
 
38
                return null;
 
39
        }
 
40
 
 
41
        public List<MapLine> getLines() {
 
42
                return null;
 
43
        }
 
44
 
 
45
        public List<MapShape> getShapes() {
 
46
                return null;
 
47
        }
 
48
 
 
49
        public RoadNetwork getRoadNetwork() {
 
50
                return null;
 
51
        }
 
52
 
 
53
        public List<Overview> getOverviews() {
 
54
                return null;
 
55
        }
 
56
}