Package frontend.panels

Examples of frontend.panels.FrontendInterface


        e.printStackTrace();
      }
    }
    if(!pluginsVector.isEmpty()) {
      Vector panelsVector = new Vector(10, 1);
      FrontendInterface tmpInterface = null;
      for(int i = 0; i < pluginsVector.size(); i++) {
        tmpInterface = (FrontendInterface) pluginsVector.elementAt(i);
        if(tmpInterface.isPanel()) {
          panelsVector.addElement(tmpInterface);
        }
      }
      if(!panelsVector.isEmpty()) {
        m_panels = new FrontendInterface[panelsVector.size()];
View Full Code Here

TOP

Related Classes of frontend.panels.FrontendInterface

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.