Skip to content
Snippets Groups Projects
Commit 4c36c403 authored by gmantele's avatar gmantele
Browse files

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

parent a5ddcb1e
No related branches found
No related tags found
No related merge requests found
...@@ -411,7 +411,7 @@ public class ADQLQueryFactory { ...@@ -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 @Deprecated
public ADQLOrder createOrder(final IdentifierItems idItems, final boolean desc) throws Exception{ public ADQLOrder createOrder(final IdentifierItems idItems, final boolean desc) throws Exception{
...@@ -431,7 +431,7 @@ public class ADQLQueryFactory { ...@@ -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 @Deprecated
public ColumnReference createColRef(final IdentifierItems idItems) throws Exception{ public ColumnReference createColRef(final IdentifierItems idItems) throws Exception{
......
...@@ -195,7 +195,7 @@ public abstract class ADQLList< T extends ADQLObject > implements ADQLObject, It ...@@ -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. * 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 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -93,7 +93,7 @@ public final class NegativeOperand implements ADQLOperand { ...@@ -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. * 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 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -176,7 +176,7 @@ public final class NumericConstant implements ADQLOperand { ...@@ -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. * 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 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -194,7 +194,7 @@ public class Operation implements ADQLOperand { ...@@ -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. * 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 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -73,7 +73,7 @@ public final class StringConstant implements ADQLOperand { ...@@ -73,7 +73,7 @@ public final class StringConstant implements ADQLOperand {
/** /**
* Sets the position at which this {@link StringConstant} has been found in the original ADQL query string. * Sets the position at which this {@link StringConstant} has been found in the original ADQL query string.
* *
* @param pos Position of this {@link StringConstant}. * @param position Position of this {@link StringConstant}.
* @since 1.4 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -80,7 +80,7 @@ public class WrappedOperand implements ADQLOperand { ...@@ -80,7 +80,7 @@ public class WrappedOperand implements ADQLOperand {
/** /**
* Sets the position at which this {@link WrappedOperand} has been found in the original ADQL query string. * 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 * @since 1.4
*/ */
public final void setPosition(final TextPosition position){ public final void setPosition(final TextPosition position){
......
...@@ -676,7 +676,7 @@ public class ADQLExecutor { ...@@ -676,7 +676,7 @@ public class ADQLExecutor {
}catch(IOException ioe){ }catch(IOException ioe){
// Propagate the exception: // Propagate the exception:
throw new UWSException(UWSException.INTERNAL_SERVER_ERROR, ioe, "Impossible to write in the file into the result of the job " + report.jobID + " must be written!"); throw new UWSException(UWSException.INTERNAL_SERVER_ERROR, ioe, "Impossible to write in the file into which the result of the job " + report.jobID + " must be written!");
}finally{ }finally{
if (!completed){ if (!completed){
// Delete the result file (it is either incomplete or incorrect ; // Delete the result file (it is either incomplete or incorrect ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment