View Javadoc
1   package net.sf.jpkgmk.util;
2   
3   
4   /**
5    * @author gommma (gommma AT users.sourceforge.net)
6    * @author Last changed by: $Author: gommma $
7    * @version $Revision: 2 $ $Date: 2008-08-20 21:14:19 +0200 (Mi, 20 Aug 2008) $
8    * @since 1.0
9    */
10  public interface VariableResolver {
11  
12  	/**
13  	 * Expands all variables within the given string and returns the evaluated result as string
14  	 * @param evaluationString
15  	 * @return
16  	 */
17  	public String expand(String evaluationString);
18  
19  
20  }