CloneSet325


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
25201.000class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
125458
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java
225411
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java
Next
Last
Clone Instance
1
Line Count
25
Source Line
458
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java

/**
 * Any extra options which are not explicitly supported
 * by this task.
 *
 *@param  extraOptions  The new ExtraOptions value
 */
public void setExtraOptions(String extraOptions) {
  this.extraOptions = extraOptions;
}

/**
 *  Gets the ExtraOptions attribute
 *
 *@return    The ExtraOptions value
 */
public String getExtraOptions() {
  return this.extraOptions;
}

/**
 *  get any extra options or null for no argument needed
 *
 *@return    The ExtraOptions Parameter to CSC
 */
protected String getExtraOptionsParameter() {
  if (extraOptions != null && extraOptions.length() != 0) {
    return extraOptions;
  }
  else {
    return null;
  }
}


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

/**
 * Any extra options which are not explicitly
 * supported by this task.
 *
 *@param  extraOptions  The new ExtraOptions value
 */
public void setExtraOptions(String extraOptions) {
  this.extraOptions = extraOptions;
}

/**
 *  Gets the ExtraOptions attribute
 *
 *@return    The ExtraOptions value
 */
public String getExtraOptions() {
  return this.extraOptions;
}

/**
 *  get any extra options or null for no argument needed
 *
 *@return    The ExtraOptions Parameter to CSC
 */
protected String getExtraOptionsParameter() {
  if (extraOptions != null && extraOptions.length() != 0) {
    return extraOptions;
  }
  else {
    return null;
  }
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Any extra options which are not explicitly supported
     * by this task.
     *
     *@param  extraOptions  The new ExtraOptions value
     */
/**
     * Any extra options which are not explicitly
     * supported by this task.
     *
     *@param  extraOptions  The new ExtraOptions value
     */
public void setExtraOptions(String extraOptions) {
  this.extraOptions = extraOptions;
}

/**
     *  Gets the ExtraOptions attribute
     *
     *@return    The ExtraOptions value
     */
public String getExtraOptions() {
  return this.extraOptions;
}

/**
     *  get any extra options or null for no argument needed
     *
     *@return    The ExtraOptions Parameter to CSC
     */
protected String getExtraOptionsParameter() {
  if (extraOptions != null && extraOptions.length() != 0) {
    return extraOptions;
  }
  else {
    return null;
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None