00001 /* 00002 * RenderDefinition.java 00003 * 00004 * Created on November 12, 2008, 2:35 PM 00005 * 00006 * Copyright 2009 Online Nederland Breedband B.V. 00007 * See the COPYRIGHT file for redistribution and use restrictions. 00008 * Authors: Guillermo Christen <guillermo.christen@is.online.nl> 00009 */ 00010 00011 package dochelper; 00012 00013 import java.util.regex.MatchResult; 00014 00021 public interface TransformDefinition { 00022 00038 public String render(MatchResult result) ; 00039 00046 public String getText(); 00047 }