Package org.encog.workbench.models

Examples of org.encog.workbench.models.ThermalModel


    if( !(file.getObject() instanceof ThermalNetwork) ) {
      throw new WorkBenchError("Can't view network as thermal.");
    }
   
    setLayout(new BorderLayout());
    this.model = new ThermalModel((ThermalNetwork) file.getObject());
    this.table = new JTable(this.model);
    this.table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    add(new JScrollPane(this.table), BorderLayout.CENTER);   
  }
View Full Code Here

TOP

Related Classes of org.encog.workbench.models.ThermalModel

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.