com.artemis.link.MultiFieldMutator 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.link;
import com.artemis.Component;
import com.artemis.World;
import com.artemis.utils.reflect.Field;
/**
* Internal interface. Used for reading/writing entity
* fields pointing to multiple entities.
*/
public interface MultiFieldMutator {
void validate(int sourceId, T collection, LinkListener listener);
T read(C c, Field f);
void setWorld(World world);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy