CloneSet4548


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7210.993class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17125
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaModelException.java
27142
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaModelException.java
Clone Instance
1
Line Count
7
Source Line
125
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaModelException.java

/**
 * Prints this exception's stack trace to the given print stream.
 * 
 * @param output the print stream
 * @since 3.0
 */
public void printStackTrace(PrintStream output) {
        synchronized (output) {
                super.printStackTrace(output);
                Throwable throwable = getException();
                if (throwable != null) {
                        output.print("Caused by: "); //$NON-NLS-1$
                        throwable.printStackTrace(output);
                }
        }
}


Clone Instance
2
Line Count
7
Source Line
142
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaModelException.java

/**
 * Prints this exception's stack trace to the given print writer.
 * 
 * @param output the print writer
 * @since 3.0
 */
public void printStackTrace(PrintWriter output) {
        synchronized (output) {
                super.printStackTrace(output);
                Throwable throwable = getException();
                if (throwable != null) {
                        output.print("Caused by: "); //$NON-NLS-1$
                        throwable.printStackTrace(output);
                }
        }
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
 * Prints this exception's stack trace to the given print stream.
 * 
 * @param output the print stream
 * @since 3.0
 */
/**
 * Prints this exception's stack trace to the given print writer.
 * 
 * @param output the print writer
 * @since 3.0
 */
public void printStackTrace( [[#variable6329ef00]] output) {
  synchronized (output) {
    super.printStackTrace(output);
    Throwable throwable = getException();
    if (throwable != null) {
      output.print("Caused by: "); //$NON-NLS-1$
      throwable.printStackTrace(output);
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#6329ef00]]
PrintStream 
12[[#6329ef00]]
PrintWriter