//copyright (C) 2007 Mocanu Cristian Romeo

 

package balls;

 

/**

 * Describe class <code>SolutionBean</code> here.

 *

 * @author <a href="mailto:chrimeea@yahoo.com">Cristian Mocanu</a>

 * @version 1.0

 */

public class SolutionBean {

 

    private Transition transition;

    private BallsSolution solutionsLight;

    private BallsSolution solutionsHeavy;

    private BallsSolution solutionsEqual;

 

 

    /**

     * Gets the value of transition

     *

     * @return the value of transition

     */

    public final Transition getTransition() {

            return this.transition;

    }

 

    /**

     * Sets the value of transition

     *

     * @param argTransition Value to assign to this.transition

     */

    public final void setTransition(final Transition argTransition) {

            this.transition = argTransition.clone();

    }

 

    /**

     * Gets the value of solutionsLight

     *

     * @return the value of solutionsLight

     */

    public final BallsSolution getSolutionsLight() {

            return this.solutionsLight;

    }

 

    /**

     * Sets the value of solutionsLight

     *

     * @param argSolutionsLight Value to assign to this.solutionsLight

     */

    public final void setSolutionsLight(final BallsSolution argSolutionsLight) {

            this.solutionsLight = argSolutionsLight;

    }

 

    /**

     * Gets the value of solutionsHeavy

     *

     * @return the value of solutionsHeavy

     */

    public final BallsSolution getSolutionsHeavy() {

            return this.solutionsHeavy;

    }

 

    /**

     * Sets the value of solutionsHeavy

     *

     * @param argSolutionsHeavy Value to assign to this.solutionsHeavy

     */

    public final void setSolutionsHeavy(final BallsSolution argSolutionsHeavy) {

            this.solutionsHeavy = argSolutionsHeavy;

    }

 

    /**

     * Gets the value of solutionsEqual

     *

     * @return the value of solutionsEqual

     */

    public final BallsSolution getSolutionsEqual() {

            return this.solutionsEqual;

    }

 

    /**

     * Sets the value of solutionsEqual

     *

     * @param argSolutionsEqual Value to assign to this.solutionsEqual

     */

    public final void setSolutionsEqual(final BallsSolution argSolutionsEqual) {

            this.solutionsEqual = argSolutionsEqual;

    }

 

}