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

[UWS,TAP] Fix javadoc

parent b2e810d4
No related branches found
No related tags found
No related merge requests found
...@@ -447,7 +447,7 @@ public class ResultSetTableIterator implements TableIterator { ...@@ -447,7 +447,7 @@ public class ResultSetTableIterator implements TableIterator {
* *
* @param dbConn {@link DBConnection} instance which has provided the given result. * @param dbConn {@link DBConnection} instance which has provided the given result.
* @param dataSet Dataset over which this iterator must iterate. * @param dataSet Dataset over which this iterator must iterate.
* @param resultMeta List of expected columns. <i>note: these metadata are expected to be really {@link TAPColumn} objects ; MAY be NULL.</i> * @param metadata List of expected columns. <i>note: these metadata are expected to be really {@link TAPColumn} objects ; MAY be NULL.</i>
* *
* @throws NullPointerException If NULL is given in parameter. * @throws NullPointerException If NULL is given in parameter.
* @throws DataReadException If the given ResultSet is closed or if the metadata (columns count and types) can not be fetched. * @throws DataReadException If the given ResultSet is closed or if the metadata (columns count and types) can not be fetched.
......
...@@ -96,7 +96,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour ...@@ -96,7 +96,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
protected String accessURL = getName(); protected String accessURL = getName();
/** The path of the XSLT style-sheet to apply. /** The path of the XSLT style-sheet to apply.
* @version 2.1 */ * @since 2.1 */
protected String xsltPath = null; protected String xsltPath = null;
/** /**
...@@ -131,7 +131,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour ...@@ -131,7 +131,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
* *
* @return XSLT path/url. * @return XSLT path/url.
* *
* @version 2.1 * @since 2.1
*/ */
public final String getXSLTPath(){ public final String getXSLTPath(){
return xsltPath; return xsltPath;
...@@ -142,7 +142,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour ...@@ -142,7 +142,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
* *
* @param path The new XSLT path/URL. * @param path The new XSLT path/URL.
* *
* @version 2.1 * @since 2.1
*/ */
public final void setXSLTPath(final String path){ public final void setXSLTPath(final String path){
if (path == null) if (path == null)
......
...@@ -58,7 +58,7 @@ public class Capabilities implements TAPResource, VOSIResource { ...@@ -58,7 +58,7 @@ public class Capabilities implements TAPResource, VOSIResource {
protected String accessURL = getName(); protected String accessURL = getName();
/** The path of the XSLT style-sheet to apply. /** The path of the XSLT style-sheet to apply.
* @version 2.1 */ * @since 2.1 */
protected String xsltPath = null; protected String xsltPath = null;
/** /**
...@@ -75,7 +75,7 @@ public class Capabilities implements TAPResource, VOSIResource { ...@@ -75,7 +75,7 @@ public class Capabilities implements TAPResource, VOSIResource {
* *
* @return XSLT path/url. * @return XSLT path/url.
* *
* @version 2.1 * @since 2.1
*/ */
public final String getXSLTPath(){ public final String getXSLTPath(){
return xsltPath; return xsltPath;
...@@ -86,7 +86,7 @@ public class Capabilities implements TAPResource, VOSIResource { ...@@ -86,7 +86,7 @@ public class Capabilities implements TAPResource, VOSIResource {
* *
* @param path The new XSLT path/URL. * @param path The new XSLT path/URL.
* *
* @version 2.1 * @since 2.1
*/ */
public final void setXSLTPath(final String path){ public final void setXSLTPath(final String path){
if (path == null) if (path == null)
......
...@@ -745,7 +745,7 @@ public class TAP implements VOSIResource { ...@@ -745,7 +745,7 @@ public class TAP implements VOSIResource {
* @param linePrefix Tabulations/Spaces that should prefix all lines * @param linePrefix Tabulations/Spaces that should prefix all lines
* (for human readability). * (for human readability).
* *
* @see TAPMetadata#getRegTAPTable() * @see TAPMetadata#getRegTAPSchema()
* *
* @since 2.1 * @since 2.1
*/ */
......
...@@ -158,7 +158,7 @@ public class DurationParamController extends NumericParamController { ...@@ -158,7 +158,7 @@ public class DurationParamController extends NumericParamController {
protected final static long MULT_MIN = 60000; protected final static long MULT_MIN = 60000;
/** Multiplication factor between milliseconds and hours. /** Multiplication factor between milliseconds and hours.
* <p>An hour is here defined as 60 minutes. So the value is computed as follows: {@link #MULT_MINUTES}*60.</p> */ * <p>An hour is here defined as 60 minutes. So the value is computed as follows: {@link #MULT_MIN}*60.</p> */
protected final static long MULT_HOURS = 3600000; protected final static long MULT_HOURS = 3600000;
/** Multiplication factor between milliseconds and days. /** Multiplication factor between milliseconds and days.
......
...@@ -282,7 +282,7 @@ public class XMLRequestParser implements RequestParser { ...@@ -282,7 +282,7 @@ public class XMLRequestParser implements RequestParser {
* *
* @throws UWSException If the given document is not valid. * @throws UWSException If the given document is not valid.
* *
* @see {@link #validate(InputStream)} * @see #validate(InputStream)
*/ */
protected void validate(final String smallXML) throws UWSException{ protected void validate(final String smallXML) throws UWSException{
validate(new ByteArrayInputStream(smallXML.getBytes())); validate(new ByteArrayInputStream(smallXML.getBytes()));
...@@ -299,7 +299,7 @@ public class XMLRequestParser implements RequestParser { ...@@ -299,7 +299,7 @@ public class XMLRequestParser implements RequestParser {
* *
* @throws UWSException If the specified document is not valid. * @throws UWSException If the specified document is not valid.
* *
* @see {@link #validate(InputStream)} * @see #validate(InputStream)
*/ */
protected void validate(final File xmlFile) throws UWSException{ protected void validate(final File xmlFile) throws UWSException{
InputStream input = null; InputStream input = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment