package com.seanhandley.projects.BinaryTree;

/**
 * A strategy interface.
 * 
 * @author Sean Handley, 320097@swan.ac.uk
 * @version May 2007
 */
public interface IStrategy<T> {
    /**
     * Carry out the operation on the object.
     * 
     * @param t
     */
    public void compute(T t);
}