com.artemis.injection.FieldResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
package com.artemis.injection;
import com.artemis.World;
import com.artemis.utils.reflect.Field;
/**
* API used by {@link FieldHandler} to resolve field values in classes eligible for injection.
* @author Snorre E. Brekke
*/
public interface FieldResolver {
/**
* Called after Wo
* @param world
*/
void initialize(World world);
Object resolve(Class> fieldType, Field field);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy