Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
15 | 2 | 0 | 1.000 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 119 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaOutlineInformationControl.java |
2 | 15 | 84 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsLabelProvider.java |
| ||||
/* * @see ILabelProvider#getText */ public String getText(Object element) { String text = super.getText(element); if (fShowDefiningType) { try { IType type = getDefiningType(element); if (type != null) { StringBuffer buf = new StringBuffer(super.getText(type)); buf.append(JavaElementLabels.CONCAT_STRING); buf.append(text); return buf.toString(); } } catch (JavaModelException e) { } } return text; } |
| ||||
/* (non-Javadoc) * @see ILabelProvider#getText */ public String getText(Object element) { String text = super.getText(element); if (fShowDefiningType) { try { IType type = getDefiningType(element); if (type != null) { StringBuffer buf = new StringBuffer(super.getText(type)); buf.append(JavaElementLabels.CONCAT_STRING); buf.append(text); return buf.toString(); } } catch (JavaModelException e) { } } return text; } |
| |||
/* (non-Javadoc) * @see ILabelProvider#getText */ /* * @see ILabelProvider#getText */ public String getText(Object element) { String text = super.getText(element); if (fShowDefiningType) { try { IType type = getDefiningType(element); if (type != null) { StringBuffer buf = new StringBuffer(super.getText(type)); buf.append(JavaElementLabels.CONCAT_STRING); buf.append(text); return buf.toString(); } } catch (JavaModelException e) { } } return text; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |