CloneSet659


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11710.971class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111104
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Day.java
21092
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Hour.java
31096
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Minute.java
41087
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Month.java
510104
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Quarter.java
611108
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Week.java
71081
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Year.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
104
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Day.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Creates a new instance, derived from the system date/time (and assuming 
 * the default timezone).
 */
public Day() {
  this(new Date());
}


Next
Previous
Clone Instance
2
Line Count
10
Source Line
92
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Hour.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Constructs a new Hour, based on the system date/time.
 */
public Hour() {
  this(new Date());
}


Next
Previous
Clone Instance
3
Line Count
10
Source Line
96
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Minute.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Constructs a new Minute, based on the system date/time.
 */
public Minute() {
  this(new Date());
}


Next
Previous
Clone Instance
4
Line Count
10
Source Line
87
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Month.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Constructs a new Month, based on the current system time.
 */
public Month() {
  this(new Date());
}


Next
Previous
Clone Instance
5
Line Count
10
Source Line
104
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Quarter.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Constructs a new Quarter, based on the current system date/time.
 */
public Quarter() {
  this(new Date());
}


Next
Previous
Clone Instance
6
Line Count
11
Source Line
108
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Week.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Creates a new time period for the week in which the current system 
 * date/time falls.
 */
public Week() {
  this(new Date());
}


First
Previous
Clone Instance
7
Line Count
10
Source Line
81
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/Year.java

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
 * Creates a new <code>Year</code>, based on the current system date/time.
 */
public Year() {
  this(new Date());
}


Clone AbstractionParameter Count: 1Parameter Bindings

/** The first millisecond. */
private long firstMillisecond;

/** The last millisecond. */
private long lastMillisecond;

/**
     * Creates a new time period for the week in which the current system 
     * date/time falls.
     */
/**
     * Constructs a new Minute, based on the system date/time.
     */
/**
     * Constructs a new Month, based on the current system time.
     */
/**
     * Constructs a new Hour, based on the system date/time.
     */
/**
     * Constructs a new Quarter, based on the current system date/time.
     */
/**
     * Creates a new instance, derived from the system date/time (and assuming 
     * the default timezone).
     */
/**
     * Creates a new <code>Year</code>, based on the current system date/time.
     */
public [[#variable18ce1f40]]() {
  this(new Date());
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ce1f40]]
Day 
12[[#18ce1f40]]
Hour 
13[[#18ce1f40]]
Minute 
14[[#18ce1f40]]
Month 
15[[#18ce1f40]]
Quarter 
16[[#18ce1f40]]
Week 
17[[#18ce1f40]]
Year