CloneSet425


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31201.000class_body_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
127604
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javac.java
231375
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Rmic.java
Next
Last
Clone Instance
1
Line Count
27
Source Line
604
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Javac.java

/**
 * If true, includes Ant's own classpath in the classpath.
 * @param include if true, includes Ant's own classpath in the classpath
 */
public void setIncludeantruntime(boolean include) {
  includeAntRuntime = include;
}

/**
 * Gets whether or not the ant classpath is to be included in the classpath.
 * @return whether or not the ant classpath is to be included in the classpath
 */
public boolean getIncludeantruntime() {
  return includeAntRuntime;
}

/**
 * If true, includes the Java runtime libraries in the classpath.
 * @param include if true, includes the Java runtime libraries in the classpath
 */
public void setIncludejavaruntime(boolean include) {
  includeJavaRuntime = include;
}

/**
 * Gets whether or not the java runtime should be included in this
 * task's classpath.
 * @return the includejavaruntime attribute
 */
public boolean getIncludejavaruntime() {
  return includeJavaRuntime;
}


First
Previous
Clone Instance
2
Line Count
31
Source Line
375
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Rmic.java

/**
 * Sets whether or not to include ant's own classpath in this task's
 * classpath.
 * Optional; default is <code>true</code>.
 * @param include if true include ant's classpath
 */
public void setIncludeantruntime(boolean include) {
  includeAntRuntime = include;
}

/**
 * Gets whether or not the ant classpath is to be included in the
 * task's classpath.
 * @return true if ant's classpath is to be included
 */
public boolean getIncludeantruntime() {
  return includeAntRuntime;
}

/**
 * task's classpath.
 * Enables or disables including the default run-time
 * libraries from the executing VM; optional,
 * defaults to false
 * @param include if true include default run-time libraries
 */
public void setIncludejavaruntime(boolean include) {
  includeJavaRuntime = include;
}

/**
 * Gets whether or not the java runtime should be included in this
 * task's classpath.
 * @return true if default run-time libraries are included
 */
public boolean getIncludejavaruntime() {
  return includeJavaRuntime;
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Sets whether or not to include ant's own classpath in this task's
     * classpath.
     * Optional; default is <code>true</code>.
     * @param include if true include ant's classpath
     */
/**
     * If true, includes Ant's own classpath in the classpath.
     * @param include if true, includes Ant's own classpath in the classpath
     */
public void setIncludeantruntime(boolean include) {
  includeAntRuntime = include;
}

/**
     * Gets whether or not the ant classpath is to be included in the
     * task's classpath.
     * @return true if ant's classpath is to be included
     */
/**
     * Gets whether or not the ant classpath is to be included in the classpath.
     * @return whether or not the ant classpath is to be included in the classpath
     */
public boolean getIncludeantruntime() {
  return includeAntRuntime;
}

/**
     * task's classpath.
     * Enables or disables including the default run-time
     * libraries from the executing VM; optional,
     * defaults to false
     * @param include if true include default run-time libraries
     */
/**
     * If true, includes the Java runtime libraries in the classpath.
     * @param include if true, includes the Java runtime libraries in the classpath
     */
public void setIncludejavaruntime(boolean include) {
  includeJavaRuntime = include;
}

/**
     * Gets whether or not the java runtime should be included in this
     * task's classpath.
     * @return true if default run-time libraries are included
     */
/**
     * Gets whether or not the java runtime should be included in this
     * task's classpath.
     * @return the includejavaruntime attribute
     */
public boolean getIncludejavaruntime() {
  return includeJavaRuntime;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None