Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 6 | 1 | 0.987 | statement_sequence[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 147 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
2 | 2 | 156 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
3 | 2 | 165 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
4 | 2 | 183 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
5 | 2 | 209 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
6 | 2 | 236 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ClassFileReader.java |
| ||||
// Read and validate access flags this.accessFlags = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| ||||
// Read the superclass name, can be zero for java.lang.Object this.superclassNameIndex = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| ||||
// Read the interfaces, use exception handlers to catch bad format this.interfacesCount = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| ||||
// Read the this.fields, use exception handlers to catch bad format this.fieldsCount = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| ||||
// Read the this.methods this.methodsCount = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| ||||
// Read the attributes this.attributesCount = u2At(classFileBytes, readOffset, 0); readOffset += 2; |
| |||
// Read the attributes // Read the this.methods // Read the this.fields, use exception handlers to catch bad format // Read the interfaces, use exception handlers to catch bad format // Read the superclass name, can be zero for java.lang.Object // Read and validate access flags this. [[#variable9ae1a3c0]]= u2At(classFileBytes, readOffset, 0); readOffset += 2; |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#9ae1a3c0]] | attributesCount |
1 | 2 | [[#9ae1a3c0]] | methodsCount |
1 | 3 | [[#9ae1a3c0]] | fieldsCount |
1 | 4 | [[#9ae1a3c0]] | interfacesCount |
1 | 5 | [[#9ae1a3c0]] | superclassNameIndex |
1 | 6 | [[#9ae1a3c0]] | accessFlags |