CloneSet3850


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9310.983class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19108
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java
29122
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java
39136
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java
Clone Instance
1
Line Count
9
Source Line
108
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java

        /**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isPrivate()
         */
        public boolean isPrivate() throws DebugException {
                try {
                        return ((ReferenceType) getUnderlyingType()).isPrivate();
                } catch (RuntimeException e) {
                        targetRequestFailed(JDIDebugModelMessages.JDIThisVariable_Exception_occurred_while_retrieving_modifiers__1, e);
                  }
                // this line will not be exceucted as an exception
                // will be throw                
                return false;
        }


Clone Instance
2
Line Count
9
Source Line
122
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java

        /**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isProtected()
         */
        public boolean isProtected() throws DebugException {
                try {
                        return ((ReferenceType) getUnderlyingType()).isProtected();
                } catch (RuntimeException e) {
                        targetRequestFailed(JDIDebugModelMessages.JDIThisVariable_Exception_occurred_while_retrieving_modifiers__1, e);
                  }
                // this line will not be exceucted as an exception
                // will be throw
                return false;
        }


Clone Instance
3
Line Count
9
Source Line
136
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThisVariable.java

        /**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isPublic()
         */
        public boolean isPublic() throws DebugException {
                try {
                        return ((ReferenceType) getUnderlyingType()).isPublic();
                } catch (RuntimeException e) {
                        targetRequestFailed(JDIDebugModelMessages.JDIThisVariable_Exception_occurred_while_retrieving_modifiers__1, e);
                  }
                // this line will not be exceucted as an exception
                // will be throw                
                return false;
        }


Clone AbstractionParameter Count: 1Parameter Bindings

/**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isPrivate()
         */
/**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isProtected()
         */
/**
         * @see org.eclipse.jdt.debug.core.IJavaModifiers#isPublic()
         */
public boolean  [[#variable9e6ec3a0]]() throws DebugException {
  try {
    return ((ReferenceType) getUnderlyingType()). [[#variable9e6ec3a0]]();
  }
  catch (RuntimeException e) {
    targetRequestFailed(JDIDebugModelMessages.JDIThisVariable_Exception_occurred_while_retrieving_modifiers__1, e);
  }
  // this line will not be exceucted as an exception
  // will be throw                
  // will be throw
  return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#9e6ec3a0]]
isPrivate 
12[[#9e6ec3a0]]
isProtected 
13[[#9e6ec3a0]]
isPublic