CloneSet1180


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10210.971class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111375
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/CSharp.java
210100
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
375
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/CSharp.java

// end execute
/**
 * Returns the delimiter which C# uses to separate references, i.e., a semi colon.
 * @return the delimiter.
 */
public String getReferenceDelimiter() {
  return ";";
}

/**
 * This method indicates the filename extension for C# files.
 * @return the file extension for C#, i.e., "cs" (without the dot).
 */
public String getFileExtension() {
  return "cs";
}


First
Previous
Clone Instance
2
Line Count
10
Source Line
100
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java

/**
 * Get the delimiter that the compiler uses between references.
 * For example, c# will return ";"; VB.NET will return ","
 * @return The string delimiter for the reference string.
 */
public String getReferenceDelimiter() {
  return ";";
}

/**
 * Get the extension of filenames to compile.
 * @return The string extension of files to compile.
 */
public String getFileExtension() {
  return ".java";
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Get the delimiter that the compiler uses between references.
     * For example, c# will return ";"; VB.NET will return ","
     * @return The string delimiter for the reference string.
     */
// end execute
/**
     * Returns the delimiter which C# uses to separate references, i.e., a semi colon.
     * @return the delimiter.
     */
public String getReferenceDelimiter() {
  return ";";
}

/**
     * Get the extension of filenames to compile.
     * @return The string extension of files to compile.
     */
/**
     * This method indicates the filename extension for C# files.
     * @return the file extension for C#, i.e., "cs" (without the dot).
     */
public String getFileExtension() {
  return [[#variable11284ca0]];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#11284ca0]]
"cs" 
12[[#11284ca0]]
".java"