File path: /emf-2.4.1/src/org/eclipse/emf/ecore/util/EcoreValidator.java | File path: /emf-2.4.1/src/org/eclipse/emf/ecore/util/EcoreValidator.java | |||
Method name: boolean validateEGenericType_ConsistentArguments(EGenericType, DiagnosticChain, Map
|
Method name: boolean validateEGenericType_ConsistentArguments(EGenericType, DiagnosticChain, Map
|
|||
Number of AST nodes: 5 | Number of AST nodes: 5 | |||
1 | if (eTypeParameterSize > 0)↵ | 1 | if (eTypeArgumentSize != 0)↵ | |
2 | {↵ | 2 | {↵ | |
3 | // Have no arguments when they are allowed is only a warning.↵ | 3 | // Can't have type arguments ↵ | |
4 | ↵ | 4 | unless there is a classifier↵ | |
5 | //↵ | 5 | //↵ | |
6 | if (diagnostics == null)↵ | 6 | if (diagnostics == null)↵ | |
7 | {↵ | 7 | ↵ | |
8 | ↵ | 8 | {↵ | |
9 | return false;↵ | 9 | return false;↵ | |
10 | }↵ | 10 | }↵ | |
11 | else↵ | 11 | else↵ | |
12 | {↵ | 12 | {↵ | |
13 | result = false;↵ | 13 | result = false;↵ | |
14 | diagnostics.add↵ | 14 | diagnostics.add↵ | |
15 | (createDiagnostic↵ | 15 | (createDiagnostic↵ | |
16 | (Diagnostic.WARNING,↵ | 16 | (Diagnostic.↵ | |
17 | ↵ | 17 | ERROR,↵ | |
18 | DIAGNOSTIC_SOURCE,↵ | 18 | DIAGNOSTIC_SOURCE,↵ | |
19 | CONSISTENT_ARGUMENTS_NONE,↵ | 19 | CONSISTENT_ARGUMENTS_NONE_ALLOWED,↵ | |
20 | "_UI_EGenericTypeArgumentsNeeded_diagnostic",↵ | 20 | "_UI_EGenericTypeNoArguments_diagnostic",↵ | |
21 | new Object [] { eClassifier.getName(), eTypeParameterSize },↵ | 21 | ↵ | |
22 | ↵ | 22 | null,↵ | |
23 | new Object[] { eGenericType },↵ | 23 | new Object[] { eGenericType },↵ | |
24 | context));↵ | 24 | context));↵ | |
25 | }↵ | 25 | }↵ | |
26 | } | 26 |
| |
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.2 |
Clones location | Clones are in the same method |
Number of node comparisons | 17 |
Number of mapped statements | 4 |
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) | 1.6 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
15 | if (diagnostics == null) | 7 | if (diagnostics == null) | ||||||||||||||||||||
16 | return false; |
| 8 | return false; | |||||||||||||||||||
else | else | ||||||||||||||||||||||
17 | result = false; | 9 | result = false; | ||||||||||||||||||||
18 | diagnostics.add(createDiagnostic(Diagnostic.WARNING, DIAGNOSTIC_SOURCE, CONSISTENT_ARGUMENTS_NONE, "_UI_EGenericTypeArgumentsNeeded_diagnostic", new Object[] {eClassifier.getName(), eTypeParameterSize}, new Object[] {eGenericType}, context)); |
| 10 | diagnostics.add(createDiagnostic(Diagnostic.ERROR, DIAGNOSTIC_SOURCE, CONSISTENT_ARGUMENTS_NONE_ALLOWED, "_UI_EGenericTypeNoArguments_diagnostic", null, new Object[] {eGenericType}, context)); |
Row | Violation |
---|---|
1 | Conditional return false; |
2 | Conditional return false; |