CloneSet112


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
63230.970compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16319
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/ListenerResultWrapper.java
26122
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/TestResultWrapper.java
Next
Last
Clone Instance
1
Line Count
63
Source Line
19
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/ListenerResultWrapper.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
package org.apache.jmeter.save;

import java.util.Collection;

/**
 * @author peter lin
 * 
 * ListenerResultWrapper is for calculated results generated by listeners like
 * aggregate listener and monitor listener.
 */
public class ListenerResultWrapper {
  String version = "";

  Collection calculatedResults;

  long testStartTime;

  /**
   * @return Returns the sampleResults.
   */
  public Collection getSampleResults() {
    return calculatedResults;
  }

  /**
   * @param results
   *            The sampleResults to set.
   */
  public void setSampleResults(Collection results) {
    this.calculatedResults = results;
  }

  /**
   * @return Returns the testStartTime.
   */
  public long getTestStartTime() {
    return testStartTime;
  }

  /**
   * @param testStartTime
   *            The testStartTime to set.
   */
  public void setTestStartTime(long testStartTime) {
    this.testStartTime = testStartTime;
  }

  /**
   * @return Returns the version.
   */
  public String getVersion() {
    return version;
  }

  /**
   * @param version
   *            The version to set.
   */
  public void setVersion(String version) {
    this.version = version;
  }
}




First
Previous
Clone Instance
2
Line Count
61
Source Line
22
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/TestResultWrapper.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *  
 */
/*
 * Created on Sep 6, 2004
 */
package org.apache.jmeter.save;

import java.util.Collection;

/**
 * @author mstover
 * 
 */
public class TestResultWrapper {
  String version = "";

  Collection sampleResults;

  long testStartTime;

  /**
   * @return Returns the sampleResults.
   */
  public Collection getSampleResults() {
    return sampleResults;
  }

  /**
   * @param sampleResults
   *            The sampleResults to set.
   */
  public void setSampleResults(Collection sampleResults) {
    this.sampleResults = sampleResults;
  }

  /**
   * @return Returns the testStartTime.
   */
  public long getTestStartTime() {
    return testStartTime;
  }

  /**
   * @param testStartTime
   *            The testStartTime to set.
   */
  public void setTestStartTime(long testStartTime) {
    this.testStartTime = testStartTime;
  }

  /**
   * @return Returns the version.
   */
  public String getVersion() {
    return version;
  }

  /**
   * @param version
   *            The version to set.
   */
  public void setVersion(String version) {
    this.version = version;
  }
}




Clone AbstractionParameter Count: 3Parameter Bindings

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *  
 */
/*
 * Created on Sep 6, 2004
 */
package org.apache.jmeter.save;

import java.util.Collection;

/**
 * @author peter lin
 * 
 * ListenerResultWrapper is for calculated results generated by listeners like
 * aggregate listener and monitor listener.
 */
/**
 * @author mstover
 * 
 */
public class [[#variablefefc800]]{
  String version = "";

  Collection  [[#variablee019e80]];

  long testStartTime;

  /**
           * @return Returns the sampleResults.
           */
  public Collection getSampleResults() {
    return [[#variablee019e80]];
  }

  /**
           * @param results
           *            The sampleResults to set.
           */
  /**
           * @param sampleResults
           *            The sampleResults to set.
           */
  public void setSampleResults(Collection  [[#variablefefc820]]) {
    this. [[#variablee019e80]]= [[#variablefefc820]];
  }

  /**
           * @return Returns the testStartTime.
           */
  public long getTestStartTime() {
    return testStartTime;
  }

  /**
           * @param testStartTime
           *            The testStartTime to set.
           */
  public void setTestStartTime(long testStartTime) {
    this.testStartTime = testStartTime;
  }

  /**
           * @return Returns the version.
           */
  public String getVersion() {
    return version;
  }

  /**
           * @param version
           *            The version to set.
           */
  public void setVersion(String version) {
    this.version = version;
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#fefc800]]
ListenerResultWrapper 
12[[#fefc800]]
TestResultWrapper 
21[[#e019e80]]
calculatedResults 
22[[#e019e80]]
sampleResults 
31[[#fefc820]]
results 
32[[#fefc820]]
sampleResults