1 /* 2 * Created on May 18, 2005 3 * 4 * TODO To change the template for this generated file go to 5 * Window - Preferences - Java - Code Style - Code Templates 6 */ 7 package org.enhydra.snapper.spec; 8 9 /** 10 * @author lola 11 * 12 * TODO To change the template for this generated type comment go to 13 * Window - Preferences - Java - Code Style - Code Templates 14 */ 15 public interface Converter { 16 17 public void setXml(String xml); 18 public void transform(); 19 } 20