File path: /sql12/app/src/net/sourceforge/squirrel_sql/client/session/properties/SessionProperties.java | File path: /sql12/app/src/net/sourceforge/squirrel_sql/client/session/properties/SessionProperties.java | |||
Method name: void setSQLLimitRows(boolean)
|
Method name: void setSqlResultTabLimit(int)
|
|||
Number of AST nodes: 4 | Number of AST nodes: 4 | |||
1 | if (_sqlLimitRows != value)↵ | 1 | if (_sqlResultTabLimit != value)↵ | |
2 | {↵ | 2 | {↵ | |
3 | final boolean oldValue = _sqlLimitRows;↵ | 3 | int oldValue = _sqlResultTabLimit;↵ | |
4 | _sqlLimitRows = value;↵ | 4 | _sqlResultTabLimit = value;↵ | |
5 | getPropertyChangeReporter().firePropertyChange(↵ | 5 | getPropertyChangeReporter().firePropertyChange(↵ | |
6 | IPropertyNames.SQL_LIMIT_ROWS,↵ | 6 | IPropertyNames.SQL_RESULT_TAB_LIMIT,↵ | |
7 | oldValue, _sqlLimitRows);↵ | 7 | oldValue, _sqlResultTabLimit);↵ | |
8 | } | 8 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 16 |
Number of mapped statements | 2 |
Number of unmapped statements in the first code fragment | 2 |
Number of unmapped statements in the second code fragment | 2 |
Time elapsed for statement mapping (ms) | 1.4 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (_sqlLimitRows != value) |
| 1 | if (_sqlResultTabLimit != value) | |||||||||||||||||||||
|
| 2 | int oldValue = _sqlResultTabLimit; | ||||||||||||||||||||||
2 | final boolean oldValue = _sqlLimitRows; |
| | ||||||||||||||||||||||
|
| 3 | _sqlResultTabLimit = value; | ||||||||||||||||||||||
3 | _sqlLimitRows = value; |
| | ||||||||||||||||||||||
4 | getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_LIMIT_ROWS, oldValue, _sqlLimitRows); |
| 4 | getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULT_TAB_LIMIT, oldValue, _sqlResultTabLimit); |
Row | Violation |
---|---|
1 | Type boolean of variable _sqlLimitRows does not match with type int of variable _sqlResultTabLimit |
2 | Type boolean of variable value does not match with type int of variable value |
3 | Unmatched statement int oldValue=_sqlResultTabLimit; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
4 | Unmatched statement final boolean oldValue=_sqlLimitRows; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
5 | Unmatched statement _sqlResultTabLimit=value; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
6 | Unmatched statement _sqlLimitRows=value; cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
7 | Type boolean of variable oldValue does not match with type int of variable oldValue |
8 | Type boolean of variable _sqlLimitRows does not match with type int of variable _sqlResultTabLimit |