public class Blobber { private int id; private Blob blob; private Clob clob; /** * Returns the blob. * @return Blob */ public Blob getBlob() { return blob; } /** * Returns the clob. * @return Clob */ public Clob getClob() { return clob; } /** * Returns the id. * @return int */ public int getId() { return id; } /** * Sets the blob. * @param blob The blob to set */ public void setBlob(Blob blob) { this.blob = blob; } /** * Sets the clob. * @param clob The clob to set */ public void setClob(Clob clob) { this.clob = clob; } /** * Sets the id. * @param id The id to set */ public void setId(int id) { this.id = id;
public class Version { long id; String name; String description; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/legacy/Blobber.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/schemaupdate/Version.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class Blobber {
1
public class 
2
	private int id;
3
	private Blob blob;
4
	private Clob clob;
5
	/**
6
	 * Returns the blob.
7
	 * @return Blob
8
	 */
2
Version {
3
	long id;
4
	String name;
5
	String description;
6
	
9
	public Blob getBlob() {
7
	public long getId() {
10
		return blob;
8
		return 
11
	}
12
	/**
13
	 * Returns the clob.
14
	 * @return Clob
15
	 */
16
	public Clob getClob() {
17
		return clob;
18
	}
19
	/**
20
	 * Returns the id.
21
	 * @return int
22
	 */
9
id;
10
	}
11
	public void setId(long id) {
12
		this.id = id;
13
	}
23
	public int getId() {
14
	public String getName() {
24
		return id;
15
		return name;
25
	}
16
	}
26
	/**
27
	 * Sets the blob.
28
	 * @param blob The blob to set
29
	 */
17
	
30
	public void setBlob(Blob blob) {
18
	public void set
31
		this.blob = blob;
32
	}
33
	/**
34
	 * Sets the clob.
35
	 * @param clob The clob to set
36
	 */
37
	public void setClob(Clob clob) {
38
		this.clob = clob;
39
	}
40
	/**
41
	 * Sets the id.
42
	 * @param id The id to set
43
	 */
44
	public void setId(int id) {
45
		this.id = id
19
Name(String name) {
20
		this.name = name;
21
	}
22
	
23
	public String getDescription() {
24
		return description;
25
	}
26
	
27
	public void setDescription(String description) {
46
;
28
		this.description = description;
47
	
29
	
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