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/TransformationDefinition.java

View differences:

TransformationDefinition.java
60 60
    /**
61 61
     * A common name for this coordinate operation
62 62
     * 
63
     * @return The human-readable name of the operation. This method should never return null
63
     * @return The human-readable name of the operation. This method shall not return null
64 64
     */
65 65
	String getName();
66 66
    
......
165 165
     * @throws UnsupportedFormatException 
166 166
     * @see #toString(org.gvsig.proj.catalog.TextSerialization.WKTConvention, int)
167 167
     */
168
	String toString(TextSerialization.Format format) throws UnsupportedOperationException, UnsupportedFormatException;
168
	String export(TextSerialization.Format format) throws UnsupportedOperationException, UnsupportedFormatException;
169 169
	
170 170
    /**
171 171
     * Returns a text serialization of this definition (such as a WKT string), using the
......
186 186
     * @throws UnsupportedOperationException if the requested format is not supported
187 187
     * or if this is object can not be formatted using that format.
188 188
     * @throws UnsupportedFormatException 
189
     * @see #toString(org.gvsig.proj.catalog.TextSerialization.WKTConvention)
189
     * @see #export(org.gvsig.proj.catalog.TextSerialization.WKTConvention)
190 190
     */
191
	String toString(TextSerialization.Format format, TextSerialization.WKTConvention convention, int indentation) throws UnsupportedOperationException, UnsupportedFormatException;
191
	String export(TextSerialization.Format format, TextSerialization.WKTConvention convention, int indentation) throws UnsupportedOperationException, UnsupportedFormatException;
192 192
	
193 193
}

Also available in: Unified diff