Class SingleGuiClassCallBuilder

    • Field Detail

      • guiClass

        protected final Class<? extends org.apache.jmeter.gui.JMeterGUIComponent> guiClass
    • Constructor Detail

      • SingleGuiClassCallBuilder

        protected SingleGuiClassCallBuilder​(Class<? extends org.apache.jmeter.gui.JMeterGUIComponent> guiClass,
                                            List<Method> builderMethods)
    • Method Detail

      • matches

        public boolean matches​(MethodCallContext context)
        Description copied from class: MethodCallBuilder
        Allows checking if this builder can build method calls for the given context.

        This method is invoked in every registered MethodCallBuilder, until one is found that matches.

        Specified by:
        matches in class MethodCallBuilder
        Parameters:
        context - provides information used to determine if a method call might be created by this builder. For example: JMeter test plan tree node test element, parent context, a map of entries to host custom information, etc.
        Returns:
        true if this builder knows how to build a method call for the context, false otherwise.