Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
10 | 2 | 2 | 0.951 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 10 | 249 | E:/TSE/Projects-CloneDR/sql12/test/proxydriver/net/sourceforge/squirrel_sql/jdbcproxy/ProxyResultSet.java |
2 | 10 | 135 | E:/TSE/Projects-CloneDR/sql12/test/proxydriver/net/sourceforge/squirrel_sql/jdbcproxy/ProxyStatement.java |
| |||||
public void setFetchDirection(int direction) throws SQLException { ProxyMethodManager.check("ProxyResultSet", "setFetchDirection"); _rs.setFetchDirection(direction); } public void setFetchSize(int rows) throws SQLException { ProxyMethodManager.check("ProxyResultSet", "setFetchSize"); _rs.setFetchSize(rows); } |
| |||||
public void setFetchDirection(int direction) throws SQLException { ProxyMethodManager.check("ProxyStatement", "setFetchDirection"); _stmt.setFetchDirection(direction); } public void setFetchSize(int rows) throws SQLException { ProxyMethodManager.check("ProxyStatement", "setFetchSize"); _stmt.setFetchSize(rows); } |
| |||
public void setFetchDirection(int direction) throws SQLException { ProxyMethodManager.check( [[#variable1cd3d860]], "setFetchDirection"); [[#variable1cd3d7e0]].setFetchDirection(direction); } public void setFetchSize(int rows) throws SQLException { ProxyMethodManager.check( [[#variable1cd3d860]], "setFetchSize"); [[#variable1cd3d7e0]].setFetchSize(rows); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cd3d860]] | "ProxyResultSet" |
1 | 2 | [[#1cd3d860]] | "ProxyStatement" |
2 | 1 | [[#1cd3d7e0]] | _rs |
2 | 2 | [[#1cd3d7e0]] | _stmt |