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

org.atemsource.atem.utility.transform.api.TransformationContext Maven / Gradle / Ivy

package org.atemsource.atem.utility.transform.api;

import java.util.Locale;
import org.atemsource.atem.api.type.EntityType;


public interface TransformationContext
{
	public Object getAttribute(String key);

	 EntityType getEntityTypeByA(J entity);

	 EntityType getEntityTypeByB(J entity);

	public Locale getLocale();

	public Object getTransformed(Object a);

	public boolean isTransformed(Object a);

	public void transformed(Object original, Object transformed);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy