1 | /* |
---|
2 | * This program is free software; you can redistribute it and/or modify |
---|
3 | * it under the terms of the GNU General Public License as published by |
---|
4 | * the Free Software Foundation; either version 2 of the License, or |
---|
5 | * (at your option) any later version. |
---|
6 | * |
---|
7 | * This program is distributed in the hope that it will be useful, |
---|
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
10 | * GNU General Public License for more details. |
---|
11 | * |
---|
12 | * You should have received a copy of the GNU General Public License |
---|
13 | * along with this program; if not, write to the Free Software |
---|
14 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
15 | */ |
---|
16 | |
---|
17 | /* |
---|
18 | * EnvironmentHandler.java |
---|
19 | * Copyright (C) 2009 University of Waikato, Hamilton, New Zealand |
---|
20 | */ |
---|
21 | |
---|
22 | package weka.core; |
---|
23 | |
---|
24 | import weka.core.Environment; |
---|
25 | |
---|
26 | /** |
---|
27 | * Interface for something that can utilize environment |
---|
28 | * variables. NOTE: since environment variables should |
---|
29 | * be transient, the implementer needs to be careful |
---|
30 | * of state after de-serialization. Default system-wide |
---|
31 | * environment variables can be got via a call to |
---|
32 | * <code>weka.core.Environment.getSystemWide()</code> |
---|
33 | * |
---|
34 | * @author mhall (mhall{[at]}pentaho{[dot]}com) |
---|
35 | * @version $Revision: 5563 $ |
---|
36 | */ |
---|
37 | public interface EnvironmentHandler { |
---|
38 | |
---|
39 | /** |
---|
40 | * Set environment variables to use. |
---|
41 | * |
---|
42 | * @param env the environment variables to |
---|
43 | * use |
---|
44 | */ |
---|
45 | void setEnvironment(Environment env); |
---|
46 | } |
---|