View Javadoc

1   package net.sf.tomp.xtcl.filter;
2   
3   import java.util.Properties;
4   
5   /***
6    * DOCUMENT ME!
7    * 
8    * @author tomp
9    */
10  public interface HasOutputProperties {
11      /***
12       * DOCUMENT ME!
13       * 
14       * @return DOCUMENT ME!
15       */
16      Properties getOutputProperties();
17  
18      /***
19       * DOCUMENT ME!
20       * 
21       * @param p DOCUMENT ME!
22       */
23      void setOutputProperties(Properties p);
24  
25      /***
26       * DOCUMENT ME!
27       * 
28       * @param l DOCUMENT ME!
29       */
30      void setOutputPropertiesListener(HasOutputProperties l);
31  }
32  
33  /*
34   * The contents of this file are subject to the Mozilla Public License Version
35   * 1.1 (the "License"); you may not use this file except in compliance with the
36   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
37   * Software distributed under the License is distributed on an "AS IS" basis,
38   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
39   * the specific language governing rights and limitations under the License. The
40   * Original Code is: all this file. The Initial Developer of the Original Code
41   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
42   */