CloneSet385


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
1210.979method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11123
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeVisitor.java
21138
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeVisitor.java
Next
Last
Clone Instance
1
Line Count
1
Source Line
123
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeVisitor.java

/**
 * Visits a field instruction. A field instruction is an instruction that
 * loads or stores the value of a field of an object.
 *
 * @param opcode the opcode of the type instruction to be visited. This opcode
 *      is either GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
 * @param owner the internal name of the field's owner class (see {@link
 *      Type#getInternalName getInternalName}).
 * @param name the field's name.
 * @param desc the field's descriptor (see {@link Type Type}).
 */
void visitFieldInsn(int opcode, String owner, String name, String desc);


First
Previous
Clone Instance
2
Line Count
1
Source Line
138
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeVisitor.java

/**
 * Visits a method instruction. A method instruction is an instruction that
 * invokes a method.
 *
 * @param opcode the opcode of the type instruction to be visited. This opcode
 *      is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or
 *      INVOKEINTERFACE.
 * @param owner the internal name of the method's owner class (see {@link
 *      Type#getInternalName getInternalName}).
 * @param name the method's name.
 * @param desc the method's descriptor (see {@link Type Type}).
 */
void visitMethodInsn(int opcode, String owner, String name, String desc);


Clone AbstractionParameter Count: 1Parameter Bindings

/**
   * Visits a field instruction. A field instruction is an instruction that
   * loads or stores the value of a field of an object.
   *
   * @param opcode the opcode of the type instruction to be visited. This opcode
   *      is either GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
   * @param owner the internal name of the field's owner class (see {@link
   *      Type#getInternalName getInternalName}).
   * @param name the field's name.
   * @param desc the field's descriptor (see {@link Type Type}).
   */
/**
   * Visits a method instruction. A method instruction is an instruction that
   * invokes a method.
   *
   * @param opcode the opcode of the type instruction to be visited. This opcode
   *      is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or
   *      INVOKEINTERFACE.
   * @param owner the internal name of the method's owner class (see {@link
   *      Type#getInternalName getInternalName}).
   * @param name the method's name.
   * @param desc the method's descriptor (see {@link Type Type}).
   */
void [[#variablec2906a0]](int opcode, String owner, String name, String desc);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c2906a0]]
visitFieldInsn 
12[[#c2906a0]]
visitMethodInsn