Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 4 | 4 | 0.950 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 594 | src/NHibernate/Impl/SessionImpl.cs |
2 | 7 | 2041 | src/NHibernate/Impl/SessionImpl.cs |
3 | 8 | 95 | src/NHibernate/Impl/StatelessSessionImpl.cs |
4 | 8 | 285 | src/NHibernate/Impl/StatelessSessionImpl.cs |
| ||||
public override IList List(string query, QueryParameters parameters) { using (new SessionIdLoggingContext(SessionId)) { IList results = new ArrayList(); List(query, parameters, results); return results; } } |
| ||||
public override IList List(NativeSQLQuerySpecification spec, QueryParameters queryParameters) { using (new SessionIdLoggingContext(SessionId)) { ArrayList results = new ArrayList(); List(spec, queryParameters, results); return results; } } |
| ||||
public override IList List(string query, QueryParameters parameters) { using (new SessionIdLoggingContext(SessionId)) { // TODO pull up IList results = new ArrayList(); List(query, parameters, results); return results; } } |
| ||||
public override IList List(NativeSQLQuerySpecification spec, QueryParameters queryParameters) { using (new SessionIdLoggingContext(SessionId)) { // TODO pull up ArrayList results = new ArrayList(); List(spec, queryParameters, results); return results; } } |
| |||
public override IList List( [[#variable5f73c500]] [[#variable5f73c480]], QueryParameters [[#variable5f73c400]]) { using (new SessionIdLoggingContext(SessionId)) { [[#variable5f73c320]]results = new ArrayList(); List( [[#variable5f73c480]], [[#variable5f73c400]], results); return results; } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5f73c500]] | string |
1 | 2 | [[#5f73c500]] | NativeSQLQuerySpecification |
1 | 3 | [[#5f73c500]] | string |
1 | 4 | [[#5f73c500]] | NativeSQLQuerySpecification |
2 | 1 | [[#5f73c480]] | query |
2 | 2 | [[#5f73c480]] | spec |
2 | 3 | [[#5f73c480]] | query |
2 | 4 | [[#5f73c480]] | spec |
3 | 1 | [[#5f73c400]] | parameters |
3 | 2 | [[#5f73c400]] | queryParameters |
3 | 3 | [[#5f73c400]] | parameters |
3 | 4 | [[#5f73c400]] | queryParameters |
4 | 1 | [[#5f73c320]] | // TODO pull up IList |
4 | 2 | [[#5f73c320]] | ArrayList |
4 | 3 | [[#5f73c320]] | IList |
4 | 4 | [[#5f73c320]] | // TODO pull up ArrayList |