Package interfaces

Examples of interfaces.PluginInterface


   * @param l     List<PluginInterface>
   * @return PluginInterface or null
   */
  public static PluginInterface getRightPlugin(String extension , List<PluginInterface> l)
  {
    PluginInterface pRes = null;
    for(PluginInterface p : l)
    {
      String[] ext = p.getExtension();
      for(String e : ext)
      if(extension.equals(e))
View Full Code Here

TOP

Related Classes of interfaces.PluginInterface

Copyright © 2018 www.massapicom. 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.