KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > pentaho > core > solution > IParameterSetter


1 /*
2  * Copyright 2006 Pentaho Corporation. All rights reserved.
3  * This software was developed by Pentaho Corporation and is provided under the terms
4  * of the Mozilla Public License, Version 1.1, or any later version. You may not use
5  * this file except in compliance with the license. If you need a copy of the license,
6  * please go to http://www.mozilla.org/MPL/MPL-1.1.txt. The Original Code is the Pentaho
7  * BI Platform. The Initial Developer is Pentaho Corporation.
8  *
9  * Software distributed under the Mozilla Public License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
11  * the license for the specific language governing your rights and limitations.
12  *
13  * @created Oct 2, 2005
14  * @author James Dixon
15  */

16
17 package org.pentaho.core.solution;
18
19 import java.util.Date JavaDoc;
20
21 /**
22  * Augments the parameter provider by adding settings for the parameters.
23  * Some parameter providers allow setting and updating values.
24  *
25  * @author jdixon
26  */

27
28 public interface IParameterSetter extends IParameterProvider {
29
30     /**
31      * Sets a named parameter to a <tt>String</tt> value
32      * @param name name of the parameter to set
33      * @param value The <tt>String</tt> value to set
34      */

35     public void setParameter(String JavaDoc name, String JavaDoc value);
36
37     /**
38      * Sets a named parameter to a <tt>long</tt> value
39      * @param name name of the parameter to set
40      * @param value The <tt>long</tt> value to set
41      */

42     public void setParameter(String JavaDoc name, long value);
43
44     /**
45      * Sets a named parameter to a <tt>Date</tt> value
46      * @param name name of the parameter to set
47      * @param value The <tt>Date</tt> value to set
48      */

49     public void setParameter(String JavaDoc name, Date JavaDoc value);
50
51     /**
52      * Sets a named parameter to a <tt>Object</tt> value
53      * @param name name of the parameter to set
54      * @param value The <tt>Object</tt> value to set
55      */

56     public void setParameter(String JavaDoc name, Object JavaDoc value);
57
58 }
59
Popular Tags