Package kieker.analysis.plugin
Class IPlugin.PluginInputPortReference
java.lang.Object
kieker.analysis.plugin.IPlugin.PluginInputPortReference
- Enclosing interface:
- IPlugin
This simple class represents a container for the reference between a plugin, its input port and the corresponding method.
- Since:
- 1.5
- Author:
- Nils Christian Ehmke
-
Constructor Summary
ConstructorsConstructorDescriptionPluginInputPortReference(IPlugin plugin, String inputPortName, Method inputPortMethod, Class<?>[] eventTypes) Creates a new instance of this class using the given parameters. -
Method Summary
-
Constructor Details
-
PluginInputPortReference
public PluginInputPortReference(IPlugin plugin, String inputPortName, Method inputPortMethod, Class<?>[] eventTypes) Creates a new instance of this class using the given parameters.- Parameters:
plugin- The plugin to store in this container.inputPortName- The name of the input port of the plugin.inputPortMethod- The corresponding method which is the input port.eventTypes- The event types of the port.
-
-
Method Details
-
getPlugin
Getter for the attributeplugin.- Returns:
- The current value of the attribute.
-
getInputPortMethod
Getter for the attributeinputPortMethod.- Returns:
- The current value of the attribute.
-
getEventTypes
Getter for the attributeeventTypes.- Returns:
- The current value of the attribute.
-
getInputPortName
Getter for the attributeinputPortName.- Returns:
- The current value of the attribute.
-