Revision 42464 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.projection/org.gvsig.projection.cresques/org.gvsig.projection.cresques.impl/src/main/java/org/cresques/impl/geo/Projection.java

View differences:

Projection.java
26 26
import org.cresques.cts.IDatum;
27 27
import org.cresques.cts.IProjection;
28 28
import org.cresques.geo.ViewPortData;
29

  
29 30
import org.gvsig.fmap.crs.CRSFactory;
30 31

  
31 32
import java.awt.Color;
......
162 163
    }
163 164

  
164 165
    abstract public void drawGrid(Graphics2D g, ViewPortData vp);
165
    
166

  
166 167
    public boolean isProjected() {
167 168
    	return false;
168 169
    }
169
    
170

  
170 171
    public Object clone() throws CloneNotSupportedException {
171 172
        return CRSFactory.getCRS( this.getFullCode() );
172 173
     }
173 174

  
175
    /* (non-Javadoc)
176
     * @see org.cresques.cts.IProjection#export(java.lang.String)
177
     */
178
    @Override
179
    public String export(String format) {
180
        // TODO Auto-generated method stub
181
        return null;
182
    }
174 183
}

Also available in: Unified diff