001 package com.khubla.pragmatach.framework.api; 002 003 import com.khubla.pragmatach.framework.resourceloader.ResourceLoader; 004 005 /** 006 * The plug-in context is passed to every plug-in. It contains methods which enable the plug-in to access framework services 007 * 008 * @author tome 009 */ 010 public interface PluginContext { 011 /** 012 * gets the framework-provided resource loader 013 */ 014 ResourceLoader getResourceLoader() throws PragmatachException; 015 }