01: //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/io/datastore/schema/content/FunctionCall.java $
02: /*---------------- FILE HEADER ------------------------------------------
03:
04: This file is part of deegree.
05: Copyright (C) 2001-2008 by:
06: Department of Geography, University of Bonn
07: http://www.giub.uni-bonn.de/deegree/
08: lat/lon GmbH
09: http://www.lat-lon.de
10:
11: This library is free software; you can redistribute it and/or
12: modify it under the terms of the GNU Lesser General Public
13: License as published by the Free Software Foundation; either
14: version 2.1 of the License, or (at your option) any later version.
15:
16: This library is distributed in the hope that it will be useful,
17: but WITHOUT ANY WARRANTY; without even the implied warranty of
18: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: Lesser General Public License for more details.
20:
21: You should have received a copy of the GNU Lesser General Public
22: License along with this library; if not, write to the Free Software
23: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24:
25: Contact:
26:
27: Andreas Poth
28: lat/lon GmbH
29: Aennchenstraße 19
30: 53177 Bonn
31: Germany
32: E-Mail: poth@lat-lon.de
33:
34: Prof. Dr. Klaus Greve
35: Department of Geography
36: University of Bonn
37: Meckenheimer Allee 166
38: 53115 Bonn
39: Germany
40: E-Mail: greve@giub.uni-bonn.de
41:
42: ---------------------------------------------------------------------------*/
43: package org.deegree.io.datastore.schema.content;
44:
45: import java.util.ArrayList;
46: import java.util.List;
47:
48: import org.deegree.io.datastore.schema.MappedSimplePropertyType;
49:
50: /**
51: * Abstract content class for {@link MappedSimplePropertyType}s that describes a call to a
52: * function as the origin of the property value.
53: *
54: * @author <a href="mailto:schneider@lat-lon.de">Markus Schneider</a>
55: * @author last edited by: $Author: apoth $
56: *
57: * @version $Revision: 9342 $, $Date: 2007-12-27 04:32:57 -0800 (Thu, 27 Dec 2007) $
58: */
59: public abstract class FunctionCall extends VirtualContent {
60:
61: private List<FunctionParam> params;
62:
63: /**
64: * Initializes a newly created <code>FunctionCall</code> with the given {@link FunctionParam}s.
65: *
66: * @param params
67: */
68: public FunctionCall(List<FunctionParam> params) {
69: this .params = params;
70: }
71:
72: /**
73: * Initializes a newly created <code>FunctionCall</code> with the given {@link FunctionParam}s.
74: *
75: * @param params
76: */
77: public FunctionCall(FunctionParam... params) {
78: this .params = new ArrayList<FunctionParam>(params.length);
79: for (FunctionParam param : params) {
80: this .params.add(param);
81: }
82: }
83:
84: /**
85: * Returns the {@link FunctionParam}s.
86: *
87: * @return the parameters of the function call
88: */
89: public List<FunctionParam> getParams() {
90: return this.params;
91: }
92: }
|