CloneSet5639


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15230.976class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
117105
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.java
21573
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaWatchpoint.java
Clone Instance
1
Line Count
17
Source Line
105
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/JavaMethodBreakpoint.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);


Clone Instance
2
Line Count
15
Source Line
73
Source File
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 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);


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#961c0ec0]]
ACCESS_EVENT 
12[[#961c0ec0]]
ENTRY_EVENT 
21[[#961c13e0]]
MODIFICATION_EVENT 
22[[#961c13e0]]
EXIT_EVENT 
31[[#961c1420]]
HashMap 
32[[#961c1420]]
Map