net.sf.andromedaioc.model.builder.processor.ContextModelProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.model.builder.processor;
import net.sf.andromedaioc.model.beans.ContextModel;
/**
* Context model processor interface to implements different post process
*
* @author Alexey Mitrov
*/
public interface ContextModelProcessor {
/**
* Process or transform input context model and returns result
*
* @param input unprocessed context model
*
* @return processed ContextModel
*/
ContextModel process(ContextModel input);
}