io.github.sporklibrary.interfaces.ObjectBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spork Show documentation
Show all versions of spork Show documentation
Annotation binding library
package io.github.sporklibrary.interfaces;
/**
* Used by the caching mechanism to bind one or more annotations for a specified object.
*/
public interface ObjectBinder
{
/**
* Bind one or more annotations for the specified object
* @param object the object to bind annotations for
*/
void bind(Object object);
}