Revision 320 org.gvsig.projection.jcrs/trunk/org.gvsig.projection.jcrs/org.gvsig.projection.jcrs.lib/src/main/java/org/gvsig/crs/Crs.java

View differences:

Crs.java
44 44
import java.awt.Graphics2D;
45 45
import java.awt.geom.Point2D;
46 46
import java.awt.geom.Rectangle2D;
47
import java.text.MessageFormat;
47 48

  
48 49
import org.cresques.cts.ICoordTrans;
49 50
import org.cresques.cts.IDatum;
......
711 712
	       return CRSFactory.getCRS( this.getFullCode() );
712 713
	    }
713 714

  
715
        public String toString() {
716
            return MessageFormat.format("{0}({1},{2})", new Object[] { 
717
                this.getClass().getName(),
718
                this.hashCode(),
719
                this.getFullCode()
720
            });
721
        }
714 722
}

Also available in: Unified diff