All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artemis.injection.FieldResolver Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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