Commit 5673597f authored by gmantele's avatar gmantele
Browse files

[ALL] Update Javadoc links and UWSService description

parent 2add9c2e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -991,7 +991,7 @@ public class DBChecker implements QueryChecker {
	 * @param errors		List of errors to complete in this function each time a coordinate system has a wrong syntax or is not supported.
	 * 
	 * @see STCS#parseCoordSys(String)
	 * @see #checkCoordinateSystem(CoordSys, ADQLOperand, UnresolvedIdentifiersException)
	 * @see #checkCoordinateSystem(adql.db.STCS.CoordSys, ADQLOperand, UnresolvedIdentifiersException)
	 * 
	 * @since 1.3
	 */
@@ -1034,7 +1034,7 @@ public class DBChecker implements QueryChecker {
	 * @param errors		List of errors to complete in this function each time the STC-S syntax is wrong or each time the declared coordinate system or region is not supported.
	 * 
	 * @see STCS#parseRegion(String)
	 * @see #checkRegion(Region, RegionFunction, BinarySearch, UnresolvedIdentifiersException)
	 * @see #checkRegion(adql.db.STCS.Region, RegionFunction, BinarySearch, UnresolvedIdentifiersException)
	 * 
	 * @since 1.3
	 */
@@ -1076,8 +1076,9 @@ public class DBChecker implements QueryChecker {
	 * @param fct		The REGION function containing the region to check.
	 * @param errors	List of errors to complete in this function if the given region or its inner regions are not supported.
	 * 
	 * @see #checkCoordinateSystem(CoordSys, ADQLOperand, UnresolvedIdentifiersException)
	 * @see #checkCoordinateSystem(adql.db.STCS.CoordSys, ADQLOperand, UnresolvedIdentifiersException)
	 * @see #checkGeometryFunction(String, ADQLFunction, BinarySearch, UnresolvedIdentifiersException)
	 * @see #checkRegion(adql.db.STCS.Region, RegionFunction, BinarySearch, UnresolvedIdentifiersException)
	 * 
	 * @since 1.3
	 */
+0 −2
Original line number Diff line number Diff line
@@ -1219,8 +1219,6 @@ public final class STCS {
	 * @return	The corresponding STC-S expression.
	 * 
	 * @throws ParseException	If the given object is NULL or not of the good type.
	 * 
	 * @see {@link Region#Region(GeometryFunction)}
	 */
	public static String toSTCS(final GeometryFunction region) throws ParseException{
		if (region == null)
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ public abstract class UserDefinedFunction extends ADQLFunction implements Unknow
	/**
	 * <p>Translate this User Defined Function into the language supported by the given translator.</p>
	 * 
	 * <p><b>VERY IMPORTANT:</b> This function <b>MUST NOT use</b> {@link ADQLTranslator#translate(UserDefinedFunction))} to translate itself.
	 * <p><b>VERY IMPORTANT:</b> This function <b>MUST NOT use</b> {@link ADQLTranslator#translate(UserDefinedFunction)} to translate itself.
	 * The given {@link ADQLTranslator} <b>must be used ONLY</b> to translate UDF's operands.</p>
	 * 
	 * <p>Implementation example (extract of {@link DefaultUDF#translate(ADQLTranslator)}):</p>
+1 −1
Original line number Diff line number Diff line
@@ -897,7 +897,7 @@ public abstract class JDBCTranslator implements ADQLTranslator {
	 * 	If the given region is NULL, NULL will be returned.
	 * </i></p>
	 * 
	 * @param stcs	The region to store in the DB.
	 * @param region	The region to store in the DB.
	 * 
	 * @return	The corresponding DB column object.
	 * 
+1 −1
Original line number Diff line number Diff line
@@ -554,7 +554,7 @@ public class ADQLExecutor {
	 * @throws InterruptedException	If the thread has been interrupted.
	 * @throws TAPException			If the {@link DBConnection} has failed to deal with the given ADQL query.
	 * 
	 * @see {@link DBConnection#executeQuery(ADQLQuery)}
	 * @see DBConnection#executeQuery(ADQLQuery)
	 */
	protected TableIterator executeADQL(final ADQLQuery adql) throws InterruptedException, TAPException{
		// Log the start of execution:
Loading