org.bidib.wizard.model.status.BidibStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-model Show documentation
Show all versions of bidibwizard-model Show documentation
jBiDiB BiDiB Wizard Model POM
package org.bidib.wizard.model.status;
import org.bidib.jbidibc.messages.enums.BidibEnum;
public interface BidibStatus {
/**
* @return the type
*/
BidibEnum getType();
/**
* @return the resource key
*/
String getKey();
/**
* @return the values
*/
T[] getValues();
/**
* @return the values that are available for macro actions
*/
default T[] getMacroValues() {
return getValues();
}
}