Revision 794 org.gvsig.proj/branches/refactor2018/org.gvsig.proj/org.gvsig.proj.catalog/org.gvsig.proj.catalog.api/src/main/java/org/gvsig/proj/catalogue/cs/CoordinateSystemAxis.java

View differences:

CoordinateSystemAxis.java
60 60

  
61 61
import javax.measure.unit.Unit;
62 62

  
63
/**
64
 * Definition of a coordinate system axis
65
 * 
66
 * @author  Martin Desruisseaux (IRD)
67
 * @author Cesar Martinez Izquierdo
68
 *
69
 */
63 70
public interface CoordinateSystemAxis {
71
    /**
72
     * The name of this coordinate system axis.
73
     * 
74
     * @return the name
75
     */
76
	String getName();
77
	
78
	/**
79
	 * The abbreviation used for this coordinate system axis.
80
	 * 
81
	 * @return the abbreviation
82
	 */
64 83
    String getAbbreviation();
65 84

  
66 85
    /**
......
92 111
     *
93 112
     * @return the coordinate system axis unit.
94 113
     */
95

  
96 114
    Unit<?> getUnit();
97

  
98

  
99

  
100 115
}

Also available in: Unified diff