Initial revision
[old-projects.git] / ekit / com / swabunga / spell / engine / Transformator.java
1 package com.swabunga.spell.engine;
2
3 /** Just am interface for Transformators.
4 *
5 * @author Robert Gustavsson (robert@lindesign.se)
6 */
7 public interface Transformator{
8
9 public String transform(String word);
10
11 }