Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
9 | 2 | 4 | 0.960 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 405 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MethodImpl.java |
2 | 9 | 419 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/MethodImpl.java |
| ||||
/** * @see com.sun.jdi.Method#isConstructor() */ public boolean isConstructor() { return name().equals("<init>"); //$NON-NLS-1$ } /** * @see com.sun.jdi.Method#isNative() */ public boolean isNative() { return (fModifierBits& MODIFIER_ACC_NATIVE) != 0; } |
| ||||
/** * @see com.sun.jdi.Method#isStaticInitializer() */ public boolean isStaticInitializer() { return name().equals("<clinit>"); //$NON-NLS-1$ } /** * @see com.sun.jdi.Method#isSynchronized() */ public boolean isSynchronized() { return (fModifierBits& MODIFIER_ACC_SYNCHRONIZED) != 0; } |
| |||
/** * @see com.sun.jdi.Method#isStaticInitializer() */ /** * @see com.sun.jdi.Method#isConstructor() */ public boolean [[#variable5731f600]]() { return name().equals( [[#variable5704c880]]); //$NON-NLS-1$ } /** * @see com.sun.jdi.Method#isSynchronized() */ /** * @see com.sun.jdi.Method#isNative() */ public boolean [[#variable57254c20]]() { return (fModifierBits& [[#variable57254c40]]) != 0; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5731f600]] | isStaticInitializer |
1 | 2 | [[#5731f600]] | isConstructor |
2 | 1 | [[#5704c880]] | "<clinit>" |
2 | 2 | [[#5704c880]] | "<init>" |
3 | 1 | [[#57254c20]] | isSynchronized |
3 | 2 | [[#57254c20]] | isNative |
4 | 1 | [[#57254c40]] | MODIFIER_ACC_SYNCHRONIZED |
4 | 2 | [[#57254c40]] | MODIFIER_ACC_NATIVE |