Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
6 | 2 | 2 | 0.955 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 340 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/EventRequestImpl.java |
2 | 6 | 351 | 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); } |
| ||||
/** * 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); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#524af3a0]] | addClassFilter |
1 | 2 | [[#524af3a0]] | addClassExclusionFilter |
2 | 1 | [[#524af340]] | fClassFilters |
2 | 2 | [[#524af340]] | fClassExclusionFilters |