Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
15 | 2 | 1 | 0.973 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 154 | E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/JavabeanDataSet.java |
2 | 12 | 213 | E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/ResultSetDataSet.java |
| |||||
public DataSetDefinition getDataSetDefinition() { return _dataSetDefinition; } public synchronized boolean next(IMessageHandler msgHandler) throws DataSetException { // TODO: This should be handled with an Iterator!!! if ( ++_iCurrent < _data.size()) { _currentRow = _data.get(_iCurrent); return true; } return false; } |
| |||||
public DataSetDefinition getDataSetDefinition() { return _dataSetDefinition; } public synchronized boolean next(IMessageHandler msgHandler) throws DataSetException { // TODO: This should be handled with an Iterator if ( ++_iCurrent < _alData.size()) { _currentRow = _alData.get(_iCurrent); return true; } return false; } |
| |||
public DataSetDefinition getDataSetDefinition() { return _dataSetDefinition; } public synchronized boolean next(IMessageHandler msgHandler) throws DataSetException { // TODO: This should be handled with an Iterator!!! // TODO: This should be handled with an Iterator if ( ++_iCurrent < [[#variable1cdc39e0]].size()) { _currentRow = [[#variable1cdc39e0]].get(_iCurrent); return true; } return false; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1cdc39e0]] | _data |
1 | 2 | [[#1cdc39e0]] | _alData |