create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / plugin / framework / PluginFactory.java
1 package net.sf.openrocket.plugin.framework;
2
3 import java.util.List;
4
5 import net.xeoh.plugins.base.Plugin;
6
7 public interface PluginFactory {
8         
9         public <E extends Plugin> List<E> getPlugins(Class<E> e, Object... args);
10         
11 }