CloneSet942


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5420.955method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15296
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java
25321
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java
35346
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java
45371
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
296
Source File
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;
}


Next
Previous
Clone Instance
2
Line Count
5
Source Line
321
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java

/**
 * 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;
}


Next
Previous
Clone Instance
3
Line Count
5
Source Line
346
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java

/**
 * 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;
}


First
Previous
Clone Instance
4
Line Count
5
Source Line
371
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/RelativeDateFormat.java

/**
 * 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;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18def6c0]]
setDaySuffix 
12[[#18def6c0]]
setHourSuffix 
13[[#18def6c0]]
setMinuteSuffix 
14[[#18def6c0]]
setSecondSuffix 
21[[#18def5e0]]
daySuffix 
22[[#18def5e0]]
hourSuffix 
23[[#18def5e0]]
minuteSuffix 
24[[#18def5e0]]
secondSuffix