Package org.encog.bot.dataunit

Examples of org.encog.bot.dataunit.CodeDataUnit


   * @param str
   *            The code to create the data unit with.
   */
  private void createCodeDataUnit(final String str) {
    if (str.trim().length() > 0) {
      final CodeDataUnit d = new CodeDataUnit();
      d.setCode(str);
      this.page.addDataUnit(d);
    }
  }
View Full Code Here


   * @param str
   *            The code to create the data unit with.
   */
  private void createCodeDataUnit(final String str) {
    if (str.trim().length() > 0) {
      final CodeDataUnit d = new CodeDataUnit();
      d.setCode(str);
      this.page.addDataUnit(d);
    }
  }
View Full Code Here

TOP

Related Classes of org.encog.bot.dataunit.CodeDataUnit

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.