View Javadoc

1   /*
2    * Created on 24.8.2004
3    *
4     */
5   package net.sf.tomp.xtcl;
6   
7   import net.sf.tomp.general.Parametrized;
8   
9   /***
10   * Extension of the Parametrized intf. 
11   * Used for Command that accept parameters to be set 
12   * via refering a Properties object
13   * 
14   * @author tomp
15   * @version 1.0
16   */
17  public interface ParametrizedCommand extends Parametrized {
18  	
19      /***
20       * Adds a reference to Properties object from which
21       * the parameters will be read.
22       * 
23       * @param ref
24       */
25      void addParameterPropertiesReference(String ref);
26  }