File path: /jfreechart-1.0.10/src/org/jfree/chart/block/ColumnArrangement.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/block/FlowArrangement.java | |||
Method name: Size2D arrangeNF(BlockContainer, Graphics2D, RectangleConstraint)
|
Method name: Size2D arrangeFN(BlockContainer, Graphics2D, RectangleConstraint)
|
|||
Number of AST nodes: 16 | Number of AST nodes: 16 | |||
1 | if (y + size.height <= height) {↵ | 1 | if (x + size.width <= width) {↵ | |
2 | itemsInColumn.add(block);↵ | 2 | itemsInRow.add(block);↵ | |
3 | block.setBounds(↵ | 3 | block.setBounds(↵ | |
4 | new Rectangle2D.Double(x, y, size.width, size.height)↵ | 4 | new Rectangle2D.Double(x, y, size.width, size.height)↵ | |
5 | );↵ | 5 | );↵ | |
6 | y = y + size.height + this.verticalGap;↵ | 6 | x = x + size.width + this.horizontalGap;↵ | |
7 | maxWidth = Math.max(maxWidth, size.width);↵ | 7 | maxHeight = Math.max(maxHeight, size.height);↵ | |
8 | }↵ | 8 | }↵ | |
9 | else {↵ | 9 | else {↵ | |
10 | if (itemsInColumn.isEmpty()) {↵ | 10 | if (itemsInRow.isEmpty()) {↵ | |
11 | // place in this column (truncated) anyway↵ | 11 | // place in this row (truncated) anyway↵ | |
12 | block.setBounds(↵ | 12 | block.setBounds(↵ | |
13 | new Rectangle2D.Double(↵ | 13 | new Rectangle2D.Double(↵ | |
14 | x, y, size.width, Math.min(size.height, height - y)↵ | 14 | x, y, Math.min(size.width, width - x), size.height↵ | |
15 | )↵ | 15 | )↵ | |
16 | );↵ | 16 | );↵ | |
17 | y = 0.0;↵ | 17 | x = 0.0;↵ | |
18 | x = x + size.width + this.horizontalGap;↵ | 18 | y = y + size.height + this.verticalGap;↵ | |
19 | }↵ | 19 | }↵ | |
20 | else {↵ | 20 | else {↵ | |
21 | // start new column↵ | 21 | // start new row↵ | |
22 | itemsInColumn.clear();↵ | 22 | itemsInRow.clear();↵ | |
23 | x = x + maxWidth + this.horizontalGap;↵ | 23 | x = ↵ | |
24 | y = 0.0↵ | 24 | 0.0;↵ | |
25 | ;↵ | 25 | y = y + maxHeight + this.verticalGap;↵ | |
26 | maxWidth = size.width;↵ | 26 | maxHeight = size.height;↵ | |
27 | block.setBounds(↵ | 27 | block.setBounds(↵ | |
28 | new Rectangle2D.Double(↵ | 28 | new Rectangle2D.Double(↵ | |
29 | x, y, size.width, Math.min(size.height, height)↵ | 29 | x, y, Math.min(size.width, width), size.height↵ | |
30 | )↵ | 30 | )↵ | |
31 | );↵ | 31 | );↵ | |
32 | y = size.height + this.verticalGap;↵ | 32 | x = size.width + this.horizontalGap;↵ | |
33 | itemsInColumn.add(block);↵ | 33 | itemsInRow.add(block);↵ | |
34 | }↵ | 34 | }↵ | |
35 | } | 35 |
| |
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.5 |
Clones location | Clones are in different classes |
Number of node comparisons | 147 |
Number of mapped statements | 16 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 30.6 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
12 | if (y + size.height <= height) |
| 10 | if (x + size.width <= width) | |||||||||||||||||||
13 | itemsInColumn.add(block); |
| 11 | itemsInRow.add(block); | |||||||||||||||||||
14 | block.setBounds(new Rectangle2D.Double(x, y, size.width, size.height)); | 12 | block.setBounds(new Rectangle2D.Double(x, y, size.width, size.height)); | ||||||||||||||||||||
15 | y = y + size.height + this.verticalGap; |
| 13 | x = x + size.width + this.horizontalGap; | |||||||||||||||||||
16 | maxWidth = Math.max(maxWidth, size.width); |
| 14 | maxHeight = Math.max(maxHeight, size.height); | |||||||||||||||||||
else | else | ||||||||||||||||||||||
17 | if (itemsInColumn.isEmpty()) |
| 15 | if (itemsInRow.isEmpty()) | |||||||||||||||||||
18 | block.setBounds(new Rectangle2D.Double(x, y, size.width, Math.min(size.height, height - y))); |
| 16 | block.setBounds(new Rectangle2D.Double(x, y, Math.min(size.width, width - x), size.height)); | |||||||||||||||||||
19 | y = 0.0; |
| 18 | y = y + size.height + this.verticalGap; | |||||||||||||||||||
20 | x = x + size.width + this.horizontalGap; |
| 17 | x = 0.0; | |||||||||||||||||||
else | else | ||||||||||||||||||||||
21 | itemsInColumn.clear(); |
| 19 | itemsInRow.clear(); | |||||||||||||||||||
22 | x = x + maxWidth + this.horizontalGap; |
| 20 | x = 0.0; | |||||||||||||||||||
23 | y = 0.0; |
| 21 | y = y + maxHeight + this.verticalGap; | |||||||||||||||||||
24 | maxWidth = size.width; |
| 24 | x = size.width + this.horizontalGap; | |||||||||||||||||||
25 | block.setBounds(new Rectangle2D.Double(x, y, size.width, Math.min(size.height, height))); |
| 23 | block.setBounds(new Rectangle2D.Double(x, y, Math.min(size.width, width), size.height)); | |||||||||||||||||||
26 | y = size.height + this.verticalGap; |
| 22 | maxHeight = size.height; | |||||||||||||||||||
27 | itemsInColumn.add(block); |
| 25 | itemsInRow.add(block); |
Row | Violation |
---|---|
1 | Expression Math.min(size.width,width - x) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression Math.min(size.height,height - y) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression y + size.height + this.verticalGap cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression x + size.width + this.horizontalGap cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression x + maxWidth + this.horizontalGap cannot be parameterized, because it has dependencies to/from statements that will be extracted |
6 | Expression y + maxHeight + this.verticalGap cannot be parameterized, because it has dependencies to/from statements that will be extracted |
7 | Clone fragment #1 returns variables maxWidth, x, y , while Clone fragment #2 returns variables maxHeight, y, x |