Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 2 | 1 | 0.960 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 58 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ejb/DDCreatorHelper.java |
2 | 3 | 74 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.java |
| |||||
// CheckStyle:VisibilityModifier ON /** * The main method. * * The main method creates an instance of the DDCreatorHelper, passing it the * args which it then processes. * @param args the arguments * @throws Exception on error */ public static void main(String[] args) throws Exception { DDCreatorHelper helper = new DDCreatorHelper(args); helper.process(); } |
| |||||
/** * Command line interface for the ejbc helper task. * @param args command line arguments. * @throws Exception if there is a problem. */ public static void main(String[] args) throws Exception { EjbcHelper helper = new EjbcHelper(args); helper.process(); } |
| |||
// CheckStyle:VisibilityModifier ON /** * The main method. * * The main method creates an instance of the DDCreatorHelper, passing it the * args which it then processes. * @param args the arguments * @throws Exception on error */ /** * Command line interface for the ejbc helper task. * @param args command line arguments. * @throws Exception if there is a problem. */ public static void main(String[] args) throws Exception { [[#variable1309c180]] helper = new [[#variable1309c180]](args); helper.process(); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1309c180]] | DDCreatorHelper |
1 | 2 | [[#1309c180]] | EjbcHelper |