CloneSet8128


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.955class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16340
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestImpl.java
26351
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestImpl.java
Clone Instance
1
Line Count
6
Source Line
340
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestImpl.java

        /**
         * Restricts the events generated by this request to be the preparation of the given reference type and any subtypes.
         */
        public void addClassFilter(String filter) throws InvalidRequestStateException {
                checkDisabled();
                if (fClassFilters == null)
                        fClassFilters = new ArrayList();

                fClassFilters.add(filter);
        }


Clone Instance
2
Line Count
6
Source Line
351
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestImpl.java

        /**
         * Restricts the events generated by this request to the preparation of reference types whose name does not match this restricted regular expression.
         */
        public void addClassExclusionFilter(String filter) throws InvalidRequestStateException {
                checkDisabled();
                if (fClassExclusionFilters == null)
                        fClassExclusionFilters = new ArrayList();

                fClassExclusionFilters.add(filter);
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Restricts the events generated by this request to be the preparation of the given reference type and any subtypes.
         */
/**
         * Restricts the events generated by this request to the preparation of reference types whose name does not match this restricted regular expression.
         */
public void [[#variable524af3a0]](String filter) throws InvalidRequestStateException {
  checkDisabled();
  if ( [[#variable524af340]]== null)
     [[#variable524af340]]= new ArrayList();
   [[#variable524af340]].add(filter);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#524af3a0]]
addClassFilter 
12[[#524af3a0]]
addClassExclusionFilter 
21[[#524af340]]
fClassFilters 
22[[#524af340]]
fClassExclusionFilters