import com.seanhandley.projects.BinaryTree.IStrategy;

/**
 * 
 * Strategy for a Plane.
 * 
 * @author Sean Handley, 320097@swan.ac.uk
 * @version May 2007
 */
public class PlaneStrategy implements IStrategy<Plane> {

    public void compute(Plane plane) {
        //do nothing
    }

}