Package

Source Code of Starter

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;

import plugin.loader.PluginClassLoader;
import frontend.dialogs.Jif;

public class Starter {

  private static Jif instance;

  public static void main(String[] args) {
    PluginClassLoader loader = null;
    loader = new PluginClassLoader(new File[] { (new File("filters/")) });
    loader.loadPlugins(new File[] { (new File("filters/color/")),
        new File("plugin/examples/math") });
    instance = Jif.getInstance();
  }
}
TOP

Related Classes of Starter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.