| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 15 | 2 | 3 | 0.976 | class_body_declarations[3] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 17 | 105 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java |
| 2 | 15 | 73 | plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaWatchpoint.java |
| ||||
/**
* Flag indicating that this breakpoint last suspended execution
* due to a method entry
*/
protected static final Integer ENTRY_EVENT = new Integer(0);
/**
* Flag indicating that this breakpoint last suspended execution
* due to a method exit
*/
protected static final Integer EXIT_EVENT = new Integer(1);
/**
* Maps each debug target that is suspended for this breakpoint to reason that
* this breakpoint suspended it. Reasons include:
* <ol>
* <li>Method entry (value <code>ENTRY_EVENT</code>)</li>
* <li>Method exit (value <code>EXIT_EVENT</code>)</li>
* </ol>
*/
private Map fLastEventTypes = new HashMap(10);
|
| ||||
/**
* Flag indicating that this breakpoint last suspended execution
* due to a field access
*/
protected static final Integer ACCESS_EVENT = new Integer(0);
/**
* Flag indicating that this breakpoint last suspended execution
* due to a field modification
*/
protected static final Integer MODIFICATION_EVENT = new Integer(1);
/**
* Maps each debug target that is suspended for this breakpiont to reason that
* this breakpoint suspended it. Reasons include:
* <ol>
* <li>Field access (value <code>ACCESS_EVENT</code>)</li>
* <li>Field modification (value <code>MODIFICATION_EVENT</code>)</li>
* </ol>
*/
private HashMap fLastEventTypes = new HashMap(10);
|
| |||
/**
* Flag indicating that this breakpoint last suspended execution
* due to a field access
*/
/**
* Flag indicating that this breakpoint last suspended execution
* due to a method entry
*/
protected static final Integer [[#variable961c0ec0]]= new Integer(0);
/**
* Flag indicating that this breakpoint last suspended execution
* due to a field modification
*/
/**
* Flag indicating that this breakpoint last suspended execution
* due to a method exit
*/
protected static final Integer [[#variable961c13e0]]= new Integer(1);
/**
* Maps each debug target that is suspended for this breakpiont to reason that
* this breakpoint suspended it. Reasons include:
* <ol>
* <li>Field access (value <code>ACCESS_EVENT</code>)</li>
* <li>Field modification (value <code>MODIFICATION_EVENT</code>)</li>
* </ol>
*/
/**
* Maps each debug target that is suspended for this breakpoint to reason that
* this breakpoint suspended it. Reasons include:
* <ol>
* <li>Method entry (value <code>ENTRY_EVENT</code>)</li>
* <li>Method exit (value <code>EXIT_EVENT</code>)</li>
* </ol>
*/
private [[#variable961c1420]] fLastEventTypes = new HashMap(10);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#961c0ec0]] | ACCESS_EVENT |
| 1 | 2 | [[#961c0ec0]] | ENTRY_EVENT |
| 2 | 1 | [[#961c13e0]] | MODIFICATION_EVENT |
| 2 | 2 | [[#961c13e0]] | EXIT_EVENT |
| 3 | 1 | [[#961c1420]] | HashMap |
| 3 | 2 | [[#961c1420]] | Map |