xtendm3-sdk.0.18.3.source-code.UtilityAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtendm3-sdk Show documentation
Show all versions of xtendm3-sdk Show documentation
XtendM3 SDK for developing XtendM3 Extensions locally
The newest version!
/**
* API to execute Utilities
*
* @since API Version 0.7.0
*/
public interface UtilityAPI {
/**
* Calls method in a utility
* @param utility name of utility to call method on (must be a string literal)
* @param method method to call
* @param arguments arguments call the method with
* @return returns value returned from utility if applicable, otherwise void
* @since API Version 0.7.0
*/
Object call(String utility, String method, Object... arguments);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy