Package org.team1126.lib.tunable
Interface Tunables.TunableHandler<T>
- Enclosing class:
Tunables
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface for wrapping objects to be tunable. Instances of this interface should
be passed to
Tunables.registerHandler(Class, TunableHandler) in order for
objects of the handler's type to be processed.-
Method Summary
Modifier and TypeMethodDescriptionvoidinit(TunableTable table, T obj) This method should implement the setup for an object to be tunable.
-
Method Details
-
init
This method should implement the setup for an object to be tunable.- Parameters:
table- The table to object is being added to.obj- The object to make tunable.
-