All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.puzzle.hiq.ui.PathNavigator Maven / Gradle / Ivy

// Copyright by Barry G. Becker, 2013. Licensed under MIT License: http://www.opensource.org/licenses/MIT
package com.barrybecker4.puzzle.hiq.ui;

import com.barrybecker4.puzzle.hiq.model.PegMove;

import java.util.List;

/**
 * Allows navigating forward and backward in the solution path.
 * @author Barry Becker
 */
public interface PathNavigator {

    /**
     * @return the path to navigate on.
     */
    List getPath();

    /**
     * Switch from the current move in the sequence forwards or backwards stepSize.
     * @param currentPosition current position in path
     * @param stepSize num steps to move forward or backwards (depending on sign. e.g. -2 means two steps back).
     */
    void moveInPath(int currentPosition, int stepSize);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy