Commit 4c36c403 authored by gmantele's avatar gmantele
Browse files

[ADQL,TAP] Fix few javadoc links and correct an error message typo.

parent a5ddcb1e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -411,7 +411,7 @@ public class ADQLQueryFactory {
	}

	/**
	 * @deprecated since 1.4 ; Former version's mistake: an ORDER BY item is either a regular/delimited column name or an integer, not a qualified column name ; Replaced by {@link #createOrder(Identifier, boolean)} ; This function is no longer used by ADQLParser. 
	 * @deprecated since 1.4 ; Former version's mistake: an ORDER BY item is either a regular/delimited column name or an integer, not a qualified column name ; Replaced by {@link #createOrder(IdentifierItem, boolean)} ; This function is no longer used by ADQLParser. 
	 */
	@Deprecated
	public ADQLOrder createOrder(final IdentifierItems idItems, final boolean desc) throws Exception{
@@ -431,7 +431,7 @@ public class ADQLQueryFactory {
	}

	/**
	 * @deprecated since 1.4 ; Former version's mistake: a GROUP BY item is either a regular/delimited column name or an integer, not a qualified column name ; Replaced by {@link #createColRef(Identifier)} ; This function is no longer used by ADQLParser.
	 * @deprecated since 1.4 ; Former version's mistake: a GROUP BY item is either a regular/delimited column name or an integer, not a qualified column name ; Replaced by {@link #createColRef(IdentifierItem)} ; This function is no longer used by ADQLParser.
	 */
	@Deprecated
	public ColumnReference createColRef(final IdentifierItems idItems) throws Exception{
+1 −1
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ public abstract class ADQLList< T extends ADQLObject > implements ADQLObject, It
	/**
	 * Sets the position at which this {@link ADQLList} has been found in the original ADQL query string.
	 * 
	 * @param pos	Position of this {@link ADQLList}.
	 * @param position	Position of this {@link ADQLList}.
	 * @since 1.4
	 */
	public final void setPosition(final TextPosition position){
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public final class NegativeOperand implements ADQLOperand {
	/**
	 * Sets the position at which this {@link NegativeOperand} has been found in the original ADQL query string.
	 * 
	 * @param pos	Position of this {@link NegativeOperand}.
	 * @param position	Position of this {@link NegativeOperand}.
	 * @since 1.4
	 */
	public final void setPosition(final TextPosition position){
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ public final class NumericConstant implements ADQLOperand {
	/**
	 * Sets the position at which this {@link NumericConstant} has been found in the original ADQL query string.
	 * 
	 * @param pos	Position of this {@link NumericConstant}.
	 * @param position	Position of this {@link NumericConstant}.
	 * @since 1.4
	 */
	public final void setPosition(final TextPosition position){
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ public class Operation implements ADQLOperand {
	/**
	 * Sets the position at which this {@link WrappedOperand} has been found in the original ADQL query string.
	 * 
	 * @param pos	Position of this {@link WrappedOperand}.
	 * @param position	Position of this {@link WrappedOperand}.
	 * @since 1.4
	 */
	public final void setPosition(final TextPosition position){
Loading