Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
4 | 3 | 2 | 0.960 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 4 | 117 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/DeferredMethodWrapper.java |
2 | 4 | 233 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java |
3 | 4 | 68 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/ClassPathContainer.java |
| ||||
/** * Returns an object which is an instance of the given class associated * with this object. Returns <code>null</code> if no such object can be * found. */ public Object getAdapter(Class adapter) { if (adapter == IDeferredWorkbenchAdapter.class ) return this ; return null; } |
| ||||
/* * @see org.eclipse.core.runtime.IAdaptable#getAdapter(Class) */ public Object getAdapter(Class clas) { if (clas == IWorkbenchAdapter.class ) return this ; return null; } |
| ||||
public Object getAdapter(Class adapter) { if (adapter == IWorkbenchAdapter.class ) return this ; return null; } |
| |||
/* * @see org.eclipse.core.runtime.IAdaptable#getAdapter(Class) */ /** * Returns an object which is an instance of the given class associated * with this object. Returns <code>null</code> if no such object can be * found. */ public Object getAdapter(Class [[#variable61008240]]) { if ( [[#variable61008240]]== [[#variable610081e0]].class ) return this ; return null; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#61008240]] | adapter |
1 | 2 | [[#61008240]] | clas |
1 | 3 | [[#61008240]] | adapter |
2 | 1 | [[#610081e0]] | IWorkbenchAdapter |
2 | 2 | [[#610081e0]] | IWorkbenchAdapter |
2 | 3 | [[#610081e0]] | IDeferredWorkbenchAdapter |