Commit c92cb3f5 authored by gmantele's avatar gmantele
Browse files

[UWS,TAP] Fix javadoc

parent b2e810d4
Loading
Loading
Loading
Loading
+131 −131
Original line number Diff line number Diff line
@@ -447,7 +447,7 @@ public class ResultSetTableIterator implements TableIterator {
	 *
	 * @param dbConn		{@link DBConnection} instance which has provided the given result.
	 * @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 DataReadException	If the given ResultSet is closed or if the metadata (columns count and types) can not be fetched.
+3 −3
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
	protected String accessURL = getName();

	/** The path of the XSLT style-sheet to apply.
	 * @version 2.1 */
	 * @since 2.1 */
	protected String xsltPath = null;

	/**
@@ -131,7 +131,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
	 *
	 * @return	XSLT path/url.
	 *
	 * @version 2.1
	 * @since 2.1
	 */
	public final String getXSLTPath(){
		return xsltPath;
@@ -142,7 +142,7 @@ public class TAPMetadata implements Iterable<TAPSchema>, VOSIResource, TAPResour
	 *
	 * @param path	The new XSLT path/URL.
	 *
	 * @version 2.1
	 * @since 2.1
	 */
	public final void setXSLTPath(final String path){
		if (path == null)
+17 −17
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ public class Capabilities implements TAPResource, VOSIResource {
	protected String accessURL = getName();

	/** The path of the XSLT style-sheet to apply.
	 * @version 2.1 */
	 * @since 2.1 */
	protected String xsltPath = null;

	/**
@@ -75,7 +75,7 @@ public class Capabilities implements TAPResource, VOSIResource {
	 *
	 * @return	XSLT path/url.
	 *
	 * @version 2.1
	 * @since 2.1
	 */
	public final String getXSLTPath(){
		return xsltPath;
@@ -86,7 +86,7 @@ public class Capabilities implements TAPResource, VOSIResource {
	 *
	 * @param path	The new XSLT path/URL.
	 *
	 * @version 2.1
	 * @since 2.1
	 */
	public final void setXSLTPath(final String path){
		if (path == null)
+1 −1
Original line number Diff line number Diff line
@@ -745,7 +745,7 @@ public class TAP implements VOSIResource {
	 * @param linePrefix	Tabulations/Spaces that should prefix all lines
	 *                  	(for human readability).
	 *
	 * @see TAPMetadata#getRegTAPTable()
	 * @see TAPMetadata#getRegTAPSchema()
	 *
	 * @since 2.1
	 */
+26 −26
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ public class DurationParamController extends NumericParamController {
	protected final static long MULT_MIN = 60000;

	/** 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;

	/** Multiplication factor between milliseconds and days.
Loading