Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libFMap / src / es / prodevelop / gvsig / mobile / fmap / driver / raster / tile / LeftTopTile.java @ 21606

History | View | Annotate | Download (1.03 KB)

1
package es.prodevelop.gvsig.mobile.fmap.driver.raster.tile;
2

    
3
import java.net.URL;
4

    
5
public class LeftTopTile extends RemoteTile {
6
        
7
        private String baseUrl = "";
8
        private String depthUrlSection = null;
9
        private String leftUrlSection = null;
10
        private String topUrlSection = null;
11
        private String endUrlSection = null;
12

    
13
        public LeftTopTile(
14
                        String base_url,
15
                        String depthSection,
16
                        String leftSection,
17
                        String topSection,
18
                        String endSection) {
19

    
20
                baseUrl = base_url;
21
                depthUrlSection = depthSection;
22
                leftUrlSection = leftSection;
23
                topUrlSection = topSection;
24
                endUrlSection = endSection;
25
        }
26
        
27

    
28
        public URL getURL() {
29
                // TODO Auto-generated method stub
30
                return null;
31
        }
32

    
33
        public RemoteTile getParentTile() {
34
                // TODO Auto-generated method stub
35
                return null;
36
        }
37

    
38
        public RemoteTile getTileToTheEast() {
39
                // TODO Auto-generated method stub
40
                return null;
41
        }
42

    
43
        public RemoteTile getTileToTheSouth() {
44
                // TODO Auto-generated method stub
45
                return null;
46
        }
47

    
48
        public Object clone() {
49
                // TODO Auto-generated method stub
50
                return null;
51
        }
52

    
53
}