com.talk2object.plum.interaction.AbstractSingleMethodInteraction Maven / Gradle / Ivy
package com.talk2object.plum.interaction;
import java.lang.reflect.Method;
/**
* the interaction is based on single method of the target model.
*
* @author jack
*
*/
public abstract class AbstractSingleMethodInteraction extends
AbstractInteraction {
public AbstractSingleMethodInteraction(Object model) {
super(model);
}
protected Method method;
public void setMethod(Method method) {
this.method = method;
}
public Method getMethod() {
return method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy