public class NativeSQLQueryScalarReturn implements NativeSQLQueryReturn { private Type type; private String columnAlias; public NativeSQLQueryScalarReturn(String alias, Type type) { this.type = type; this.columnAlias = alias; } public String getColumnAlias() { return columnAlias; } public Type getType() { return type
public class TypeDef implements Serializable { private String typeClass; private Properties parameters; public TypeDef(String typeClass, Properties parameters) { this.typeClass = typeClass; this.parameters = parameters; } public Properties getParameters() { return parameters; } public String getTypeClass() { return typeClass
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/core/src/main/java/org/hibernate/engine/query/sql/NativeSQLQueryScalarReturn.java File path: /hibernate-distribution-3.3.2.GA/project/core/src/main/java/org/hibernate/mapping/TypeDef.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class NativeSQLQueryScalarReturn implements NativeSQLQueryReturn {
1
public class TypeDef implements Serializable {
2
	private Type type;
2
	private 
3
	private String columnAlias;
4
	public NativeSQLQueryScalarReturn(String alias, Type type
3
String typeClass;
4
	private Properties parameters;
5
) {
5
	public TypeDef(String typeClass, Properties parameters) {
6
		this.type = type;
6
		this.typeClass = typeClass;
7
		this.columnAlias = alias;
7
		this.parameters = parameters;
8
	}
8
	}
9

10
	public String getColumnAlias() {
9
	public Properties getParameters() {
11
		return columnAlias;
10
		return parameters;
12
	}
11
	}
13

14
	public Type getType() {
12
	public String getTypeClass() {
15
		return type
13
		return typeClass
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0