File path: /jfreechart-1.0.10/src/org/jfree/chart/block/ColumnArrangement.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/block/GridArrangement.java | |||
Method name: Size2D arrange(BlockContainer, Graphics2D, RectangleConstraint)
|
Method name: Size2D arrange(BlockContainer, Graphics2D, RectangleConstraint)
|
|||
Number of AST nodes: 24 | Number of AST nodes: 24 | |||
1 | LengthConstraintType w = constraint.getWidthConstraintType();↵ | 1 | LengthConstraintType w = constraint.getWidthConstraintType();↵ | |
2 | LengthConstraintType h = constraint.getHeightConstraintType();↵ | 2 | LengthConstraintType h = constraint.getHeightConstraintType();↵ | |
3 | if (w == LengthConstraintType.NONE) {↵ | 3 | if (w == LengthConstraintType.NONE) {↵ | |
4 | if (h == LengthConstraintType.NONE) {↵ | 4 | if (h == LengthConstraintType.NONE) {↵ | |
5 | return arrangeNN(container, g2); ↵ | 5 | return arrangeNN(container, g2); ↵ | |
6 | }↵ | 6 | }↵ | |
7 | else if (h == LengthConstraintType.FIXED) {↵ | 7 | else if (h == LengthConstraintType.FIXED) {↵ | |
8 | ↵ | |||
8 | throw new RuntimeException("Not implemented."); ↵ | 9 | throw new RuntimeException("Not yet implemented."); ↵ | |
9 | }↵ | 10 | }↵ | |
10 | else if (h == LengthConstraintType.RANGE) {↵ | 11 | else if (h == LengthConstraintType.RANGE) {↵ | |
12 | // find optimum height, then map to range↵ | |||
11 | throw new RuntimeException("Not implemented."); ↵ | 13 | throw new RuntimeException("Not yet implemented."); ↵ | |
12 | }↵ | 14 | }↵ | |
13 | }↵ | 15 | }↵ | |
14 | else if (w == LengthConstraintType.FIXED) {↵ | 16 | else if (w == LengthConstraintType.FIXED) {↵ | |
15 | if (h == LengthConstraintType.NONE) {↵ | 17 | if (h == LengthConstraintType.NONE) {↵ | |
16 | throw new RuntimeException("Not implemented."↵ | 18 | // find optimum height↵ | |
17 | ); ↵ | 19 | return arrangeFN(container, g2, constraint); ↵ | |
18 | }↵ | 20 | }↵ | |
19 | else if (h == LengthConstraintType.FIXED) {↵ | 21 | else if (h == LengthConstraintType.FIXED) {↵ | |
20 | return arrangeFF(container, g2, constraint); ↵ | 22 | return arrangeFF(container, g2, constraint);↵ | |
21 | }↵ | 23 | }↵ | |
22 | else if (h == LengthConstraintType.RANGE) {↵ | 24 | else if (h == LengthConstraintType.RANGE) {↵ | |
23 | throw new RuntimeException("Not implemented."↵ | 25 | // find optimum height and map to range↵ | |
24 | ); ↵ | 26 | return arrangeFR(container, g2, constraint); ↵ | |
25 | }↵ | 27 | }↵ | |
26 | }↵ | 28 | }↵ | |
27 | else if (w == LengthConstraintType.RANGE) {↵ | 29 | else if (w == LengthConstraintType.RANGE) {↵ | |
30 | // find optimum width and map to range↵ | |||
28 | if (h == LengthConstraintType.NONE) {↵ | 31 | if (h == LengthConstraintType.NONE) {↵ | |
32 | // find optimum height↵ | |||
29 | throw new RuntimeException("Not implemented."); ↵ | 33 | throw new RuntimeException("Not yet implemented."); ↵ | |
30 | }↵ | 34 | }↵ | |
31 | else if (h == LengthConstraintType.FIXED) {↵ | 35 | else if (h == LengthConstraintType.FIXED) {↵ | |
32 | return arrangeRF(container, g2, constraint↵ | 36 | // fixed width↵ | |
33 | ); ↵ | 37 | throw new RuntimeException("Not yet implemented."); ↵ | |
34 | }↵ | 38 | }↵ | |
35 | else if (h == LengthConstraintType.RANGE) {↵ | 39 | else if (h == LengthConstraintType.RANGE) {↵ | |
36 | return arrangeRR(container, g2, constraint); ↵ | 40 | throw new RuntimeException("Not yet implemented."); ↵ | |
37 | }↵ | 41 | }↵ | |
38 | }↵ | 42 | }↵ | |
39 | return new Size2D(); | 43 |
| |
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) | 5.6 |
Clones location | Clones are in different classes |
Number of node comparisons | 180 |
Number of mapped statements | 22 |
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) | 7.9 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | LengthConstraintType w = constraint.getWidthConstraintType(); | 1 | LengthConstraintType w = constraint.getWidthConstraintType(); | ||||||||||||
2 | LengthConstraintType h = constraint.getHeightConstraintType(); | 2 | LengthConstraintType h = constraint.getHeightConstraintType(); | ||||||||||||
3 | if (w == LengthConstraintType.NONE) | 3 | if (w == LengthConstraintType.NONE) | ||||||||||||
4 | if (h == LengthConstraintType.NONE) | 4 | if (h == LengthConstraintType.NONE) | ||||||||||||
5 | return arrangeNN(container, g2); | 5 | return arrangeNN(container, g2); | ||||||||||||
6 | else if (h == LengthConstraintType.FIXED) | 6 | else if (h == LengthConstraintType.FIXED) | ||||||||||||
7 | throw new RuntimeException("Not implemented."); |
| 7 | throw new RuntimeException("Not yet implemented."); | |||||||||||
8 | else if (h == LengthConstraintType.RANGE) | 8 | else if (h == LengthConstraintType.RANGE) | ||||||||||||
9 | throw new RuntimeException("Not implemented."); |
| 9 | throw new RuntimeException("Not yet implemented."); | |||||||||||
10 | else if (w == LengthConstraintType.FIXED) |
| 17 | else if (w == LengthConstraintType.RANGE) | |||||||||||
11 | if (h == LengthConstraintType.NONE) | 18 | if (h == LengthConstraintType.NONE) | ||||||||||||
12 | throw new RuntimeException("Not implemented."); |
| 19 | throw new RuntimeException("Not yet implemented."); | |||||||||||
13 | else if (h == LengthConstraintType.FIXED) | 20 | else if (h == LengthConstraintType.FIXED) | ||||||||||||
14 | return arrangeFF(container, g2, constraint); |
| | ||||||||||||
|
| 21 | throw new RuntimeException("Not yet implemented."); | ||||||||||||
15 | else if (h == LengthConstraintType.RANGE) | 22 | else if (h == LengthConstraintType.RANGE) | ||||||||||||
16 | throw new RuntimeException("Not implemented."); |
| 23 | throw new RuntimeException("Not yet implemented."); | |||||||||||
17 | else if (w == LengthConstraintType.RANGE) |
| 10 | else if (w == LengthConstraintType.FIXED) | |||||||||||
18 | if (h == LengthConstraintType.NONE) | 11 | if (h == LengthConstraintType.NONE) | ||||||||||||
|
| 12 | return arrangeFN(container, g2, constraint); | ||||||||||||
19 | throw new RuntimeException("Not implemented."); |
| | ||||||||||||
20 | else if (h == LengthConstraintType.FIXED) | 13 | else if (h == LengthConstraintType.FIXED) | ||||||||||||
21 | return arrangeRF(container, g2, constraint); |
| 14 | return arrangeFF(container, g2, constraint); | |||||||||||
22 | else if (h == LengthConstraintType.RANGE) | 15 | else if (h == LengthConstraintType.RANGE) | ||||||||||||
23 | return arrangeRR(container, g2, constraint); |
| 16 | return arrangeFR(container, g2, constraint); | |||||||||||
24 | return new Size2D(); | 24 | return new Size2D(); |
Row | Violation |
---|---|
1 | Unmatched return arrangeFF(container,g2,constraint); |
2 | Unmatched statement throw new RuntimeException("Not yet implemented."); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted |
3 | Unmatched throw new RuntimeException("Not yet implemented."); |
4 | Unmatched statement return arrangeFN(container,g2,constraint); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted |
5 | Unmatched return arrangeFN(container,g2,constraint); |
6 | Unmatched statement throw new RuntimeException("Not implemented."); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted |
7 | Unmatched throw new RuntimeException("Not implemented."); |
8 | Expression arrangeFR(container,g2,constraint) is a method call throwing exception(s) that should be caught by a try block that will be extracted |
9 | Not all possible execution flows end in a return statement |