forked from deegree/deegree3
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'deegree/main' into changeConfigurationE…
…xamples
- Loading branch information
Showing
31 changed files
with
608 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 14 additions & 6 deletions
20
...ialect/deegree-sqldialect-commons/src/main/java/org/deegree/sqldialect/SortCriterion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
package org.deegree.sqldialect; | ||
|
||
import org.deegree.commons.jdbc.TableName; | ||
|
||
/** | ||
* @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a> | ||
*/ | ||
public class SortCriterion { | ||
|
||
private final String columneName; | ||
private final String columnName; | ||
|
||
private final TableName tableName; | ||
|
||
private final boolean sortAscending; | ||
|
||
public SortCriterion( String columneName, boolean sortAscending ) { | ||
this.columneName = columneName; | ||
public SortCriterion( String columnName, TableName tableName, boolean sortAscending ) { | ||
this.columnName = columnName; | ||
this.sortAscending = sortAscending; | ||
this.tableName = tableName; | ||
} | ||
|
||
public String getColumneName() { | ||
return columneName; | ||
public String getColumnName() { | ||
return columnName; | ||
} | ||
|
||
public TableName getTableName() { | ||
return tableName; | ||
} | ||
|
||
public boolean isSortAscending() { | ||
return sortAscending; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.