org.bidib.wizard.api.model.function.SystemFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
package org.bidib.wizard.api.model.function;
import org.bidib.wizard.model.status.BidibStatus;
public abstract class SystemFunction extends Function {
public static final Integer SYSTEM_FUNCION = 255;
public SystemFunction(T action, String key) {
super(action, key);
}
}