CloneSet3510


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9201.000class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19349
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java
2993
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodEntryBreakpoint.java
Clone Instance
1
Line Count
9
Source Line
349
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java

        /**
         * Adds the method name and signature attributes to the
         * given attribute map, and intializes the local cache
         * of method name and signature.
         */
        private void addMethodNameAndSignature(Map attributes, String methodName, String methodSignature) {
                if (methodName != null) {
                        attributes.put(METHOD_NAME, methodName);
                }
                if (methodSignature != null) {
                        attributes.put(METHOD_SIGNATURE, methodSignature);
                }
                fMethodName = methodName;
                fMethodSignature = methodSignature;
        }


Clone Instance
2
Line Count
9
Source Line
93
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodEntryBreakpoint.java

        /**
         * Adds the method name and signature attributes to the
         * given attribute map, and intializes the local cache
         * of method name and signature.
         */
        private void addMethodNameAndSignature(Map attributes, String methodName, String methodSignature) {
                if (methodName != null) {
                        attributes.put(METHOD_NAME, methodName);
                }
                if (methodSignature != null) {
                        attributes.put(METHOD_SIGNATURE, methodSignature);
                }
                fMethodName = methodName;
                fMethodSignature = methodSignature;
        }


Clone AbstractionParameter Count: 0Parameter Bindings

/**
         * Adds the method name and signature attributes to the
         * given attribute map, and intializes the local cache
         * of method name and signature.
         */
private void addMethodNameAndSignature(Map attributes, String methodName, String methodSignature) {
  if (methodName != null) {
    attributes.put(METHOD_NAME, methodName);
  }
  if (methodSignature != null) {
    attributes.put(METHOD_SIGNATURE, methodSignature);
  }
  fMethodName = methodName;
  fMethodSignature = methodSignature;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None