Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
10 | 2 | 3 | 0.976 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 10 | 123 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java |
2 | 10 | 145 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java |
| ||||
/** * Show inherited methods */ public void showInheritedMethods(boolean on) { if (on == isShowInheritedMethods()) { return; } try { getTable().setRedraw(false); showInheritedMethodsNoRedraw(on); refresh(); } finally { getTable().setRedraw(true); } } |
| ||||
/** * Show the name of the defining type */ public void sortByDefiningType(boolean on) { if (on == isShowDefiningTypes()) { return; } try { getTable().setRedraw(false); sortByDefiningTypeNoRedraw(on); refresh(); } finally { getTable().setRedraw(true); } } |
| |||
/** * Show inherited methods */ /** * Show the name of the defining type */ public void [[#variable90063e20]](boolean on) { if (on == [[#variable90063da0]]()) { return; } try { getTable().setRedraw(false); [[#variable90063d00]](on); refresh(); } finally { getTable().setRedraw(true); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#90063e20]] | showInheritedMethods |
1 | 2 | [[#90063e20]] | sortByDefiningType |
2 | 1 | [[#90063da0]] | isShowInheritedMethods |
2 | 2 | [[#90063da0]] | isShowDefiningTypes |
3 | 1 | [[#90063d00]] | showInheritedMethodsNoRedraw |
3 | 2 | [[#90063d00]] | sortByDefiningTypeNoRedraw |