Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 4 | 2 | 0.955 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 296 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java |
2 | 5 | 321 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java |
3 | 5 | 346 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java |
4 | 5 | 371 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java |
| |||||
/** * Sets the string that is appended to the day count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getDaySuffix() */ public void setDaySuffix(String suffix) { if (suffix == null) { throw new IllegalArgumentException("Null \'suffix\' argument."); } this.daySuffix = suffix; } |
| |||||
/** * Sets the string that is appended to the hour count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getHourSuffix() */ public void setHourSuffix(String suffix) { if (suffix == null) { throw new IllegalArgumentException("Null \'suffix\' argument."); } this.hourSuffix = suffix; } |
| |||||
/** * Sets the string that is appended to the minute count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getMinuteSuffix() */ public void setMinuteSuffix(String suffix) { if (suffix == null) { throw new IllegalArgumentException("Null \'suffix\' argument."); } this.minuteSuffix = suffix; } |
| |||||
/** * Sets the string that is appended to the second count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getSecondSuffix() */ public void setSecondSuffix(String suffix) { if (suffix == null) { throw new IllegalArgumentException("Null \'suffix\' argument."); } this.secondSuffix = suffix; } |
| |||
/** * Sets the string that is appended to the second count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getSecondSuffix() */ /** * Sets the string that is appended to the minute count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getMinuteSuffix() */ /** * Sets the string that is appended to the hour count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getHourSuffix() */ /** * Sets the string that is appended to the day count. * * @param suffix the suffix (<code>null</code> not permitted). * * @see #getDaySuffix() */ public void [[#variable18def6c0]](String suffix) { if (suffix == null) { throw new IllegalArgumentException("Null \'suffix\' argument."); } this. [[#variable18def5e0]]= suffix; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18def6c0]] | setDaySuffix |
1 | 2 | [[#18def6c0]] | setHourSuffix |
1 | 3 | [[#18def6c0]] | setMinuteSuffix |
1 | 4 | [[#18def6c0]] | setSecondSuffix |
2 | 1 | [[#18def5e0]] | daySuffix |
2 | 2 | [[#18def5e0]] | hourSuffix |
2 | 3 | [[#18def5e0]] | minuteSuffix |
2 | 4 | [[#18def5e0]] | secondSuffix |