mdk_introspection.Supplier Maven / Gradle / Ivy
/* Quark 1.0.452 run at 2016-11-10 18:39:58.222591 */
package mdk_introspection;
/**
* A Supplier has a 'get' method that can return a value to anyone who needs it.
*/
public interface Supplier {
public static quark.reflect.Class mdk_introspection_Supplier_quark_Object__ref = datawire_mdk_md.Root.mdk_introspection_Supplier_quark_Object__md;
/**
* Gets a value
*/
T get();
}