View Javadoc

1   package net.sf.tomp.general;
2   
3   /***
4    * DOCUMENT ME!
5    * 
6    * @author $author$
7    * @version $Revision$
8    */
9   public interface Parametrized {
10      /***
11       * DOCUMENT ME!
12       * 
13       * @param k DOCUMENT ME!
14       * @param v DOCUMENT ME!
15       */
16      void setParameter(String k, Object v);
17  }
18  
19  /*
20   * The contents of this file are subject to the Mozilla Public License Version
21   * 1.1 (the "License"); you may not use this file except in compliance with the
22   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
23   * Software distributed under the License is distributed on an "AS IS" basis,
24   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
25   * the specific language governing rights and limitations under the License. The
26   * Original Code is: all this file. The Initial Developer of the Original Code
27   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
28   */