CloneSet50


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
19901.000class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1191497
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/AntClassLoader.java
217209
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/DefaultLogger.java
318212
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/sound/AntSoundPlayer.java
417255
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Recorder.java
520480
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/BuildFileTest.java
6345
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/ExecutorTest.java
7337
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/MockBuildListener.java
83365
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/AntTest.java
93480
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/AntTest.java
Next
Last
Clone Instance
1
Line Count
19
Source Line
1497
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/AntClassLoader.java

/**
 * Empty implementation to satisfy the BuildListener interface.
 *
 * @param event the targetFinished event
 */
public void targetFinished(BuildEvent event) {
// Not significant for the class loader.
}

/**
 * Empty implementation to satisfy the BuildListener interface.
 *
 * @param event the taskStarted event
 */
public void taskStarted(BuildEvent event) {
// Not significant for the class loader.
}

/**
 * Empty implementation to satisfy the BuildListener interface.
 *
 * @param event the taskFinished event
 */
public void taskFinished(BuildEvent event) {
// Not significant for the class loader.
}


Next
Previous
Clone Instance
2
Line Count
17
Source Line
209
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/DefaultLogger.java

/**
 * No-op implementation.
 *
 * @param event Ignored.
 */
public void targetFinished(BuildEvent event) {
}

/**
 * No-op implementation.
 *
 * @param event Ignored.
 */
public void taskStarted(BuildEvent event) {
}

/**
 * No-op implementation.
 *
 * @param event Ignored.
 */
public void taskFinished(BuildEvent event) {
}


Next
Previous
Clone Instance
3
Line Count
18
Source Line
212
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/sound/AntSoundPlayer.java

/**
 *  Fired when a target has finished. This event will
 *  still be thrown if an error occurred during the build.
 * @param event ignored.
 *  @see BuildEvent#getException()
 */
public void targetFinished(BuildEvent event) {
}

/**
 *  Fired when a task is started.
 * @param event ignored.
 *  @see BuildEvent#getTask()
 */
public void taskStarted(BuildEvent event) {
}

/**
 *  Fired when a task has finished. This event will still
 *  be throw if an error occurred during the build.
 * @param event ignored.
 *  @see BuildEvent#getException()
 */
public void taskFinished(BuildEvent event) {
}


Next
Previous
Clone Instance
4
Line Count
17
Source Line
255
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Recorder.java

/**
 * Empty implementation required by SubBuildListener interface.
 * @param event ignored.
 * @since Ant 1.7
 */
public void targetFinished(BuildEvent event) {
}

/**
 * Empty implementation required by SubBuildListener interface.
 * @param event ignored.
 * @since Ant 1.7
 */
public void taskStarted(BuildEvent event) {
}

/**
 * Empty implementation required by SubBuildListener interface.
 * @param event ignored.
 * @since Ant 1.7
 */
public void taskFinished(BuildEvent event) {
}


Next
Previous
Clone Instance
5
Line Count
20
Source Line
480
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/BuildFileTest.java

/**
 * Fired when a target has finished. This event will
 * still be thrown if an error occurred during the build.
 *
 * @see BuildEvent#getException()
 */
public void targetFinished(BuildEvent event) {
//System.out.println("targetFinished " + event.getTarget().getName());
}

/**
 * Fired when a task is started.
 *
 * @see BuildEvent#getTask()
 */
public void taskStarted(BuildEvent event) {
//System.out.println("taskStarted " + event.getTask().getTaskName());
}

/**
 * Fired when a task has finished. This event will still
 * be throw if an error occurred during the build.
 *
 * @see BuildEvent#getException()
 */
public void taskFinished(BuildEvent event) {
//System.out.println("taskFinished " + event.getTask().getTaskName());
}


Next
Previous
Clone Instance
6
Line Count
3
Source Line
45
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/ExecutorTest.java

public void targetFinished(BuildEvent event) {
}

public void taskStarted(BuildEvent event) {
}

public void taskFinished(BuildEvent event) {
}


Next
Previous
Clone Instance
7
Line Count
3
Source Line
37
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/MockBuildListener.java

public void targetFinished(BuildEvent event) {
}

public void taskStarted(BuildEvent event) {
}

public void taskFinished(BuildEvent event) {
}


Next
Previous
Clone Instance
8
Line Count
3
Source Line
365
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/AntTest.java

public void targetFinished(BuildEvent event) {
}

public void taskStarted(BuildEvent event) {
}

public void taskFinished(BuildEvent event) {
}


First
Previous
Clone Instance
9
Line Count
3
Source Line
480
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/tests/junit/org/apache/tools/ant/taskdefs/AntTest.java

public void targetFinished(BuildEvent event) {
}

public void taskStarted(BuildEvent event) {
}

public void taskFinished(BuildEvent event) {
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Empty implementation to satisfy the BuildListener interface.
     *
     * @param event the targetFinished event
     */
/**
     * No-op implementation.
     *
     * @param event Ignored.
     */
/**
     *  Fired when a target has finished. This event will
     *  still be thrown if an error occurred during the build.
     * @param event ignored.
     *  @see BuildEvent#getException()
     */
/**
     * Empty implementation required by SubBuildListener interface.
     * @param event ignored.
     * @since Ant 1.7
     */
/**
         * Fired when a target has finished. This event will
         * still be thrown if an error occurred during the build.
         *
         * @see BuildEvent#getException()
         */
public void targetFinished(BuildEvent event) {
// Not significant for the class loader.
//System.out.println("targetFinished " + event.getTarget().getName());
}

/**
     * Empty implementation to satisfy the BuildListener interface.
     *
     * @param event the taskStarted event
     */
/**
     * No-op implementation.
     *
     * @param event Ignored.
     */
/**
     *  Fired when a task is started.
     * @param event ignored.
     *  @see BuildEvent#getTask()
     */
/**
     * Empty implementation required by SubBuildListener interface.
     * @param event ignored.
     * @since Ant 1.7
     */
/**
         * Fired when a task is started.
         *
         * @see BuildEvent#getTask()
         */
public void taskStarted(BuildEvent event) {
// Not significant for the class loader.
//System.out.println("taskStarted " + event.getTask().getTaskName());
}

/**
     * Empty implementation to satisfy the BuildListener interface.
     *
     * @param event the taskFinished event
     */
/**
     * No-op implementation.
     *
     * @param event Ignored.
     */
/**
     *  Fired when a task has finished. This event will still
     *  be throw if an error occurred during the build.
     * @param event ignored.
     *  @see BuildEvent#getException()
     */
/**
     * Empty implementation required by SubBuildListener interface.
     * @param event ignored.
     * @since Ant 1.7
     */
/**
         * Fired when a task has finished. This event will still
         * be throw if an error occurred during the build.
         *
         * @see BuildEvent#getException()
         */
public void taskFinished(BuildEvent event) {
// Not significant for the class loader.
//System.out.println("taskFinished " + event.getTask().getTaskName());
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None