Statistics
| Revision:

root / tags / Root_CqCMSGisPlanet / libraries / libCq CMS for java.old / src / org / cresques / io / DgnFile.java @ 1933

History | View | Annotate | Download (987 Bytes)

1 2 luisw
/*
2
 * Created on 03-may-2004
3
 *
4
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>
5
 */
6
7
package org.cresques.io;
8
9 94 luisw
import org.cresques.cts.ICoordTrans;
10
import org.cresques.cts.IProjection;
11 96 luisw
import org.cresques.px.IObjList;
12 2 luisw
13
/**
14
 * Clase de soporte para ficheros .dgn de MicroStation
15
 *
16
 * @author "Luis W. Sevilla" <sevilla_lui@gva.es>* @author administrador
17
 * TODO extension .dgn sin implementar
18
 */
19
20
public class DgnFile extends GeoFile {
21
        private String name;
22
23 94 luisw
        public DgnFile(IProjection proj, String name) {
24 13 luisw
                super(proj, name);
25 2 luisw
        }
26
27
        public GeoFile load() {
28
                return this;
29
        }
30
31 94 luisw
        public void reProject(ICoordTrans rp) {
32 2 luisw
                // TODO metodo reProject pendiente de implementar
33
        }
34 96 luisw
35
        /* (no Javadoc)
36
         * @see org.cresques.io.GeoFile#getObjects()
37
         */
38
        public IObjList getObjects() {
39
                // TODO Ap?ndice de m?todo generado autom?ticamente
40
                return null;
41
        }
42 210 luisw
43
        /* (non-Javadoc)
44
         * @see org.cresques.io.GeoFile#close()
45
         */
46
        public void close() {
47
                // TODO Auto-generated method stub
48
49
        }
50 2 luisw
}