Package kakuro.table

Examples of kakuro.table.FixedTable


  /** Bedrótozott implementáció, könnyű szinten {@link SimpleTable}-t gyárt, amúgy {@link FixedTable}-t. */
  public ITable generateTable(int skillLevel) {
    if (skillLevel == ITable.DIFFICULTY_EASY)
      return new SimpleTable();
    return new FixedTable();
  }
View Full Code Here


  /** Bedrótozott implementáció, könnyű szinten {@link SimpleTable}-t gyárt, amúgy {@link FixedTable}-t. */
  public ITable populateSkeleton(ISkeletonTable skeleton) {
    if (skeleton.getDifficulty() == ITable.DIFFICULTY_EASY)
      return new SimpleTable();
    return new FixedTable();
  }
View Full Code Here

TOP

Related Classes of kakuro.table.FixedTable

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.