Revision 866 org.gvsig.proj/branches/refactor2018/org.gvsig.proj/org.gvsig.proj.catalog/org.gvsig.proj.catalog.api/src/main/java/org/gvsig/proj/catalog/CRSDefinition.java

View differences:

CRSDefinition.java
56 56
    /**
57 57
     * A common name for this coordinate reference system
58 58
     * 
59
     * @return The human-readable name of the CRS. This method should never return null
59
     * @return The human-readable name of the CRS. This method shall not return null
60 60
     */
61 61
	String getName();
62 62
    
......
156 156
     * or if this is object can not be formatted using that format.
157 157
     * @see #toString(org.gvsig.proj.catalog.TextSerialization.WKTConvention, int)
158 158
     */
159
	String toString(TextSerialization.Format format) throws UnsupportedOperationException;
159
	String export(TextSerialization.Format format) throws UnsupportedOperationException;
160 160
	
161 161
    /**
162 162
     * Returns a text serialization of this definition (such as a WKT string), using the
......
177 177
     * @return A serialized version of this definition.
178 178
     * @throws UnsupportedOperationException if the requested format is not supported
179 179
     * or if this is object can not be formatted using that format.
180
     * @see #toString(org.gvsig.proj.catalog.TextSerialization.WKTConvention)
180
     * @see #export(org.gvsig.proj.catalog.TextSerialization.WKTConvention)
181 181
     */
182
	String toString(TextSerialization.Format format, TextSerialization.WKTConvention convention, int indentation) throws UnsupportedOperationException;
182
	String export(TextSerialization.Format format, TextSerialization.WKTConvention convention, int indentation) throws UnsupportedOperationException;
183 183
	
184 184
	/**
185 185
	 * If the CRS type is {@link CRSType#CompoundCRSType}, this method returns the ordered

Also available in: Unified diff