Commit e3b8271a authored by gmantele's avatar gmantele
Browse files

ADQL: Correct version number for all modified ADQL related classes since the...

ADQL: Correct version number for all modified ADQL related classes since the official v1.1 release. Now, version number after any modification in ADQL is v1.2.
parent fc38da51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ import adql.query.ADQLQuery;
 * in case of several JOINs.
 * 
 * @author Grégory Mantelet (ARI) - gmantele@ari.uni-heidelberg.de
 * @version 1.1 (11/2013)
 * @version 1.2 (11/2013)
 */
public class DBCommonColumn implements DBColumn {

+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ import java.util.Iterator;
 * Default implementation of {@link DBTable}.
 * 
 * @author Grégory Mantelet (CDS;ARI)
 * @version 1.1 (11/2013)
 * @version 1.2 (11/2013)
 */
public class DefaultDBTable implements DBTable {

+3 −3
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ import cds.utils.TextualSearchList;
 * </i></p>
 * 
 * @author Gr&eacute;gory Mantelet (CDS;ARI)
 * @version 1.1 (11/2013)
 * @version 1.2 (11/2013)
 */
public class SearchColumnList extends TextualSearchList<DBColumn> {
	private static final long serialVersionUID = 1L;
@@ -404,8 +404,8 @@ public class SearchColumnList extends TextualSearchList<DBColumn> {
	 * @param <E> Type of the item that this Iterator must return.
	 * 
	 * @author Gr&eacute;gory Mantelet (ARI) - gmantele@ari.uni-heidelberg.de
	 * @version 1.1 (11/2013)
	 * @since 1.1
	 * @version 1.2 (11/2013)
	 * @since 1.2
	 */
	private static class SingleIterator< E > implements Iterator<E> {
		private final E item;
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ import adql.query.TextPosition;
 * and particularly because of the join condition (i.e. column names not found, ...).
 * 
 * @author Gr&eacute;gory Mantelet (ARI) - gmantele@ari.uni-heidelberg.de
 * @version 1.1 (11/2013)
 * @version 1.2 (11/2013)
 */
public class UnresolvedJoin extends ParseException {
	private static final long serialVersionUID = 1L;
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ import adql.search.ISearchHandler;
 * <p>The resulting object of the {@link ADQLParser} is an object of this class.</p>
 * 
 * @author Gr&eacute;gory Mantelet (CDS;ARI)
 * @version 1.1 (11/2013)
 * @version 1.2 (11/2013)
 */
public class ADQLQuery implements ADQLObject {

Loading