Interface StringTransformable


public interface StringTransformable

A StringTransformable object can transform one String into another String.

Author:
David Mutchler, based on an idea from Lynn Stein in her Rethinking CS 101 project. Created Mar 12, 2009.

Method Summary
 String transform(String stringToTransform)
          Transform the given String into another String.
 

Method Detail

transform

String transform(String stringToTransform)
Transform the given String into another String.

Parameters:
stringToTransform - The String to transform
Returns:
The transformed String