Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 3 | 1 | 0.994 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 6 | 374 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingContentProvider.java |
2 | 7 | 513 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java |
3 | 7 | 227 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementContentProvider.java |
| ||||
/** * Updates the package icon */ private void postUpdateIcon( final IJavaElement element) { postRunnable(new Runnable() { public void run() { Control ctrl = fViewer.getControl(); if (ctrl != null && !ctrl.isDisposed()) fViewer.update(element, new String[] { IBasicPropertyConstants.P_IMAGE } ); } } ); } |
| ||||
/** * Updates the package icon */ private void postUpdateIcon( final IJavaElement element) { postRunnable(new Runnable() { public void run() { // 1GF87WR: ITPUI:ALL - SWTEx + NPE closing a workbench window. Control ctrl = fViewer.getControl(); if (ctrl != null && !ctrl.isDisposed()) fViewer.update(element, new String[] { IBasicPropertyConstants.P_IMAGE } ); } } ); } |
| ||||
/* * Updates the package icon */ private void updatePackageIcon( final IJavaElement element) { postRunnable(new Runnable() { public void run() { // 1GF87WR: ITPUI:ALL - SWTEx + NPE closing a workbench window. Control ctrl = fViewer.getControl(); if (ctrl != null && !ctrl.isDisposed()) fViewer.update(element, new String[] { IBasicPropertyConstants.P_IMAGE } ); } } ); } |
| |||
/** * Updates the package icon */ /* * Updates the package icon */ private void [[#variableb37bd760]]( final IJavaElement element) { postRunnable(new Runnable() { public void run() { // 1GF87WR: ITPUI:ALL - SWTEx + NPE closing a workbench window. Control ctrl = fViewer.getControl(); if (ctrl != null && !ctrl.isDisposed()) fViewer.update(element, new String[] { IBasicPropertyConstants.P_IMAGE } ); } } ); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#b37bd760]] | postUpdateIcon |
1 | 2 | [[#b37bd760]] | updatePackageIcon |
1 | 3 | [[#b37bd760]] | postUpdateIcon |