CloneSet80


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
27730.957type_declarations
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12735
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java
22734
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/config/gui/AbstractConfigGui.java
32734
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/control/gui/AbstractControllerGui.java
4732
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/processor/gui/AbstractPostProcessorGui.java
5833
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/processor/gui/AbstractPreProcessorGui.java
62733
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/samplers/gui/AbstractSamplerGui.java
72735
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/timers/gui/AbstractTimerGui.java
Next
Last
Clone Instance
1
Line Count
27
Source Line
35
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java

/**
 * This is the base class for JMeter GUI components which manage assertions.
 * 
 * @author Michael Stover
 * @version $Revision: 493779 $
 */
public abstract class AbstractAssertionGui extends AbstractJMeterGuiComponent {
  /**
   * When a user right-clicks on the component in the test tree, or selects
   * the edit menu when the component is selected, the component will be asked
   * to return a JPopupMenu that provides all the options available to the
   * user from this component.
   * <p>
   * This implementation returns menu items appropriate for most assertion
   * components.
   * 
   * @return a JPopupMenu appropriate for the component.
   */
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultAssertionMenu();
  }

  /**
   * This is the list of menu categories this gui component will be available
   * under. This implementation returns
   * {@link org.apache.jmeter.gui.util.MenuFactory#ASSERTIONS}, which is
   * appropriate for most assertion components.
   * 
   * @return a Collection of Strings, where each element is one of the
   *         constants defined in MenuFactory
   */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.ASSERTIONS
                                      } );
  }
}




Next
Previous
Clone Instance
2
Line Count
27
Source Line
34
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/config/gui/AbstractConfigGui.java

/**
 * This is the base class for JMeter GUI components which provide configuration
 * for some other component.
 * 
 */
public abstract class AbstractConfigGui extends AbstractJMeterGuiComponent {
  /**
   * When a user right-clicks on the component in the test tree, or selects
   * the edit menu when the component is selected, the component will be asked
   * to return a JPopupMenu that provides all the options available to the
   * user from this component.
   * <p>
   * This implementation returns menu items appropriate for most configuration
   * components.
   * 
   * @return a JPopupMenu appropriate for the component.
   */
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultConfigElementMenu();
  }

  /**
   * This is the list of menu categories this gui component will be available
   * under. This implementation returns
   * {@link org.apache.jmeter.gui.util.MenuFactory#CONFIG_ELEMENTS}, which is
   * appropriate for most configuration components.
   * 
   * @return a Collection of Strings, where each element is one of the
   *         constants defined in MenuFactory
   */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.CONFIG_ELEMENTS
                                      } );
  }
}




Next
Previous
Clone Instance
3
Line Count
27
Source Line
34
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/control/gui/AbstractControllerGui.java

/**
 * This is the base class for JMeter GUI components which manage controllers.
 * 
 * @version $Revision: 493779 $ on $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
 */
public abstract class AbstractControllerGui extends AbstractJMeterGuiComponent {
  /**
   * When a user right-clicks on the component in the test tree, or selects
   * the edit menu when the component is selected, the component will be asked
   * to return a JPopupMenu that provides all the options available to the
   * user from this component.
   * <p>
   * This implementation returns menu items appropriate for most controller
   * components.
   * 
   * @return a JPopupMenu appropriate for the component.
   */
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultControllerMenu();
  }

  /**
   * This is the list of menu categories this gui component will be available
   * under. This implementation returns
   * {@link org.apache.jmeter.gui.util.MenuFactory#CONTROLLERS}, which is
   * appropriate for most controller components.
   * 
   * @return a Collection of Strings, where each element is one of the
   *         constants defined in MenuFactory
   */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.CONTROLLERS
                                      } );
  }
}




Next
Previous
Clone Instance
4
Line Count
7
Source Line
32
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/processor/gui/AbstractPostProcessorGui.java

/**
 * @version $Revision: 493779 $
 */
public abstract class AbstractPostProcessorGui extends AbstractJMeterGuiComponent {
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultExtractorMenu();
  }

  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.POST_PROCESSORS
                                      } );
  }
}




Next
Previous
Clone Instance
5
Line Count
8
Source Line
33
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/processor/gui/AbstractPreProcessorGui.java

/**
 * 
 * @version $Revision: 493779 $ $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
 */
public abstract class AbstractPreProcessorGui extends AbstractJMeterGuiComponent {
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultExtractorMenu();
  }

  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.PRE_PROCESSORS
                                      } );
  }
}




Next
Previous
Clone Instance
6
Line Count
27
Source Line
33
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/samplers/gui/AbstractSamplerGui.java

/**
 * This is the base class for JMeter GUI components which manage samplers.
 * 
 */
public abstract class AbstractSamplerGui extends AbstractJMeterGuiComponent {
  /**
   * When a user right-clicks on the component in the test tree, or selects
   * the edit menu when the component is selected, the component will be asked
   * to return a JPopupMenu that provides all the options available to the
   * user from this component.
   * <p>
   * This implementation returns menu items appropriate for most sampler
   * components.
   * 
   * @return a JPopupMenu appropriate for the component.
   */
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultSamplerMenu();
  }

  /**
   * This is the list of menu categories this gui component will be available
   * under. This implementation returns
   * {@link org.apache.jmeter.gui.util.MenuFactory#SAMPLERS}, which is
   * appropriate for most sampler components.
   * 
   * @return a Collection of Strings, where each element is one of the
   *         constants defined in MenuFactory
   */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.SAMPLERS
                                      } );
  }
}




First
Previous
Clone Instance
7
Line Count
27
Source Line
35
Source File
E:/TSE/Projects-CloneDR/jakarta-jmeter-2.3.2/src/org/apache/jmeter/timers/gui/AbstractTimerGui.java

/**
 * This is the base class for JMeter GUI components which manage timers.
 * 
 * @author Michael Stover
 * @version $Revision: 493779 $
 */
public abstract class AbstractTimerGui extends AbstractJMeterGuiComponent {
  /**
   * When a user right-clicks on the component in the test tree, or selects
   * the edit menu when the component is selected, the component will be asked
   * to return a JPopupMenu that provides all the options available to the
   * user from this component.
   * <p>
   * This implementation returns menu items appropriate for most timer
   * components.
   * 
   * @return a JPopupMenu appropriate for the component.
   */
  public JPopupMenu createPopupMenu() {
    return MenuFactory.getDefaultTimerMenu();
  }

  /**
   * This is the list of menu categories this gui component will be available
   * under. This implementation returns
   * {@link org.apache.jmeter.gui.util.MenuFactory#TIMERS}, which is
   * appropriate for most timer components.
   * 
   * @return a Collection of Strings, where each element is one of the
   *         constants defined in MenuFactory
   */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory.TIMERS
                                      } );
  }
}




Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * This is the base class for JMeter GUI components which manage timers.
 * 
 * @author Michael Stover
 * @version $Revision: 493779 $
 */
/**
 * This is the base class for JMeter GUI components which manage samplers.
 * 
 */
/**
 * 
 * @version $Revision: 493779 $ $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
 */
/**
 * @version $Revision: 493779 $
 */
/**
 * This is the base class for JMeter GUI components which manage controllers.
 * 
 * @version $Revision: 493779 $ on $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
 */
/**
 * This is the base class for JMeter GUI components which provide configuration
 * for some other component.
 * 
 */
/**
 * This is the base class for JMeter GUI components which manage assertions.
 * 
 * @author Michael Stover
 * @version $Revision: 493779 $
 */
public abstract class [[#variablee0d46e0]]extends AbstractJMeterGuiComponent {
  /**
           * When a user right-clicks on the component in the test tree, or selects
           * the edit menu when the component is selected, the component will be asked
           * to return a JPopupMenu that provides all the options available to the
           * user from this component.
           * <p>
           * This implementation returns menu items appropriate for most timer
           * components.
           * 
           * @return a JPopupMenu appropriate for the component.
           */
  /**
           * When a user right-clicks on the component in the test tree, or selects
           * the edit menu when the component is selected, the component will be asked
           * to return a JPopupMenu that provides all the options available to the
           * user from this component.
           * <p>
           * This implementation returns menu items appropriate for most sampler
           * components.
           * 
           * @return a JPopupMenu appropriate for the component.
           */
  /**
           * When a user right-clicks on the component in the test tree, or selects
           * the edit menu when the component is selected, the component will be asked
           * to return a JPopupMenu that provides all the options available to the
           * user from this component.
           * <p>
           * This implementation returns menu items appropriate for most controller
           * components.
           * 
           * @return a JPopupMenu appropriate for the component.
           */
  /**
           * When a user right-clicks on the component in the test tree, or selects
           * the edit menu when the component is selected, the component will be asked
           * to return a JPopupMenu that provides all the options available to the
           * user from this component.
           * <p>
           * This implementation returns menu items appropriate for most configuration
           * components.
           * 
           * @return a JPopupMenu appropriate for the component.
           */
  /**
           * When a user right-clicks on the component in the test tree, or selects
           * the edit menu when the component is selected, the component will be asked
           * to return a JPopupMenu that provides all the options available to the
           * user from this component.
           * <p>
           * This implementation returns menu items appropriate for most assertion
           * components.
           * 
           * @return a JPopupMenu appropriate for the component.
           */
  public JPopupMenu createPopupMenu() {
    return MenuFactory. [[#variablee0d4680]]();
  }

  /**
           * This is the list of menu categories this gui component will be available
           * under. This implementation returns
           * {@link org.apache.jmeter.gui.util.MenuFactory#TIMERS}, which is
           * appropriate for most timer components.
           * 
           * @return a Collection of Strings, where each element is one of the
           *         constants defined in MenuFactory
           */
  /**
           * This is the list of menu categories this gui component will be available
           * under. This implementation returns
           * {@link org.apache.jmeter.gui.util.MenuFactory#SAMPLERS}, which is
           * appropriate for most sampler components.
           * 
           * @return a Collection of Strings, where each element is one of the
           *         constants defined in MenuFactory
           */
  /**
           * This is the list of menu categories this gui component will be available
           * under. This implementation returns
           * {@link org.apache.jmeter.gui.util.MenuFactory#CONTROLLERS}, which is
           * appropriate for most controller components.
           * 
           * @return a Collection of Strings, where each element is one of the
           *         constants defined in MenuFactory
           */
  /**
           * This is the list of menu categories this gui component will be available
           * under. This implementation returns
           * {@link org.apache.jmeter.gui.util.MenuFactory#CONFIG_ELEMENTS}, which is
           * appropriate for most configuration components.
           * 
           * @return a Collection of Strings, where each element is one of the
           *         constants defined in MenuFactory
           */
  /**
           * This is the list of menu categories this gui component will be available
           * under. This implementation returns
           * {@link org.apache.jmeter.gui.util.MenuFactory#ASSERTIONS}, which is
           * appropriate for most assertion components.
           * 
           * @return a Collection of Strings, where each element is one of the
           *         constants defined in MenuFactory
           */
  public Collection getMenuCategories() {
    return Arrays.asList(new String[] {
                                        MenuFactory. [[#variablee0d4640]]
                                      } );
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#e0d46e0]]
AbstractAssertionGui 
12[[#e0d46e0]]
AbstractConfigGui 
13[[#e0d46e0]]
AbstractControllerGui 
14[[#e0d46e0]]
AbstractPostProcessorGui 
15[[#e0d46e0]]
AbstractPreProcessorGui 
16[[#e0d46e0]]
AbstractSamplerGui 
17[[#e0d46e0]]
AbstractTimerGui 
21[[#e0d4680]]
getDefaultAssertionMenu 
22[[#e0d4680]]
getDefaultConfigElementMenu 
23[[#e0d4680]]
getDefaultControllerMenu 
24[[#e0d4680]]
getDefaultExtractorMenu 
25[[#e0d4680]]
getDefaultExtractorMenu 
26[[#e0d4680]]
getDefaultSamplerMenu 
27[[#e0d4680]]
getDefaultTimerMenu 
31[[#e0d4640]]
ASSERTIONS 
32[[#e0d4640]]
CONFIG_ELEMENTS 
33[[#e0d4640]]
CONTROLLERS 
34[[#e0d4640]]
POST_PROCESSORS 
35[[#e0d4640]]
PRE_PROCESSORS 
36[[#e0d4640]]
SAMPLERS 
37[[#e0d4640]]
TIMERS