CloneSet156


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5320.967method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
152204
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java
252236
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java
352267
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
2204
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java

/**
 * Send a "message logged" project level event
 * to the build listeners for this project.
 *
 * @param project  The project generating the event.
 *                 Should not be <code>null</code>.
 * @param message  The message to send. Should not be <code>null</code>.
 * @param throwable The exception that caused this message. May be <code>null</code>.
 * @param priority The priority of the message.
 * @since 1.7
 */
protected void fireMessageLogged(Project project, String message, Throwable throwable, int priority) {
  BuildEvent event = new BuildEvent(project);
  event.setException(throwable);
  fireMessageLoggedEvent(event, message, priority);
}


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

/**
 * Send a &quot;message logged&quot; target level event
 * to the build listeners for this project.
 *
 * @param target   The target generating the event.
 *                 Must not be <code>null</code>.
 * @param message  The message to send. Should not be <code>null</code>.
 * @param throwable The exception that caused this message. May be <code>null</code>.
 * @param priority The priority of the message.
 * @since 1.7
 */
protected void fireMessageLogged(Target target, String message, Throwable throwable, int priority) {
  BuildEvent event = new BuildEvent(target);
  event.setException(throwable);
  fireMessageLoggedEvent(event, message, priority);
}


First
Previous
Clone Instance
3
Line Count
5
Source Line
2267
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java

/**
 * Send a &quot;message logged&quot; task level event
 * to the build listeners for this project.
 *
 * @param task     The task generating the event.
 *                 Must not be <code>null</code>.
 * @param message  The message to send. Should not be <code>null</code>.
 * @param throwable The exception that caused this message. May be <code>null</code>.
 * @param priority The priority of the message.
 * @since 1.7
 */
protected void fireMessageLogged(Task task, String message, Throwable throwable, int priority) {
  BuildEvent event = new BuildEvent(task);
  event.setException(throwable);
  fireMessageLoggedEvent(event, message, priority);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Send a &quot;message logged&quot; task level event
     * to the build listeners for this project.
     *
     * @param task     The task generating the event.
     *                 Must not be <code>null</code>.
     * @param message  The message to send. Should not be <code>null</code>.
     * @param throwable The exception that caused this message. May be <code>null</code>.
     * @param priority The priority of the message.
     * @since 1.7
     */
/**
     * Send a &quot;message logged&quot; target level event
     * to the build listeners for this project.
     *
     * @param target   The target generating the event.
     *                 Must not be <code>null</code>.
     * @param message  The message to send. Should not be <code>null</code>.
     * @param throwable The exception that caused this message. May be <code>null</code>.
     * @param priority The priority of the message.
     * @since 1.7
     */
/**
     * Send a &quot;message logged&quot; project level event
     * to the build listeners for this project.
     *
     * @param project  The project generating the event.
     *                 Should not be <code>null</code>.
     * @param message  The message to send. Should not be <code>null</code>.
     * @param throwable The exception that caused this message. May be <code>null</code>.
     * @param priority The priority of the message.
     * @since 1.7
     */
protected void fireMessageLogged( [[#variable13191580]]  [[#variable13191500]], String message, Throwable throwable, int priority) {
  BuildEvent event = new BuildEvent( [[#variable13191500]]);
  event.setException(throwable);
  fireMessageLoggedEvent(event, message, priority);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#13191580]]
Project 
12[[#13191580]]
Target 
13[[#13191580]]
Task 
21[[#13191500]]
project 
22[[#13191500]]
target 
23[[#13191500]]
task