Package org.encog.workbench.frames.document.tree

Examples of org.encog.workbench.frames.document.tree.ProjectFile


    return this.tabs.contains(tab);
  }

  public EncogCommonTab find(File file) {
    for (final EncogCommonTab tab : this.tabs) {
      ProjectFile pf = (ProjectFile)tab.getEncogObject();
      if( pf==null )
        continue;
     
      if( file.equals(pf.getFile()))
        return tab;
           
    }
    return null;
   
View Full Code Here

TOP

Related Classes of org.encog.workbench.frames.document.tree.ProjectFile

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.