/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package monogram.plugin; import java.io.File; /** * * @author OEM */ public interface Plugin { public File run(PluginConfiguration fileView) throws Exception; }