org.joinedworkz.common.info.EventHandlingInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-base Show documentation
Show all versions of common-base Show documentation
DSL based modeling framework - facilities common base
package org.joinedworkz.common.info;
import org.joinedworkz.core.model.ux.CmnEventHandling;
public class EventHandlingInfo {
private CmnEventHandling eventHandling;
private String handlerMethodName;
private String handlerParameter;
private boolean preventDefault;
private boolean replace;
public CmnEventHandling getEventHandling() {
return eventHandling;
}
public void setEventHandling(CmnEventHandling eventHandling) {
this.eventHandling = eventHandling;
}
public String getHandlerMethodName() {
return handlerMethodName;
}
public void setHandlerMethodName(String handlerMethodName) {
this.handlerMethodName = handlerMethodName;
}
public String getHandlerParameter() {
return handlerParameter;
}
public void setHandlerParameter(String handlerParameter) {
this.handlerParameter = handlerParameter;
}
public boolean isPreventDefault() {
return preventDefault;
}
public void setPreventDefault(boolean preventDefault) {
this.preventDefault = preventDefault;
}
public boolean isReplace() {
return replace;
}
public void setReplace(boolean replace) {
this.replace = replace;
}
}