1 | public class ScalarReturn implements Return {
↵ | | 1 | public class TypeDef implements Serializable {↵
|
|
2 | private final Type type;↵ | | 2 | private ↵
|
3 | private final String columnAlias;↵ | | |
|
|
4 | public ScalarReturn(Type type, String columnAlia↵ | | 3 | String typeClass;↵
|
| | | 4 | private Properties parameters;↵
|
|
5 | s) {
↵ | | 5 | public TypeDef(String typeClass, Properties parameters) {↵
|
6 | this.type = type;
↵ | | 6 | this.typeClass = typeClass;↵
|
7 | this.columnAlias = columnAlias;
↵ | | 7 | this.parameters = parameters;↵
|
8 | }↵ | | 8 | }↵
|
9 |
↵ | | |
|
|
10 | public Type getType() {
↵ | | 9 | public Properties getParameters() {↵
|
11 | return type;↵ | | 10 | return ↵
|
12 | }↵ | | |
|
13 |
↵ | | 11 | parameters;↵
|
| | | 12 | }↵
|
14 | public String getColumnAlias() {
↵ | | 13 | public String getTypeClass() {↵
|
15 | return columnAlias | | 14 | return typeClass
|