Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 3 | 2 | 0.967 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 2204 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java |
2 | 5 | 2236 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/Project.java |
3 | 5 | 2267 | 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); } |
| |||||
/** * Send a "message logged" 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); } |
| |||||
/** * Send a "message logged" 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); } |
| |||
/** * Send a "message logged" 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 "message logged" 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 "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( [[#variable13191580]] [[#variable13191500]], String message, Throwable throwable, int priority) { BuildEvent event = new BuildEvent( [[#variable13191500]]); event.setException(throwable); fireMessageLoggedEvent(event, message, priority); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#13191580]] | Project |
1 | 2 | [[#13191580]] | Target |
1 | 3 | [[#13191580]] | Task |
2 | 1 | [[#13191500]] | project |
2 | 2 | [[#13191500]] | target |
2 | 3 | [[#13191500]] | task |