01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.util.functions;
11:
12: /**
13: * The implementation of one set ('namespace') of functions. This is actually just a named FunctionProvider.
14: *
15: * @see FunctionSets
16: * @author Daniel Ockeloen
17: * @author Michiel Meeuwissen
18: * @version $Id: FunctionSet.java,v 1.9 2006/10/14 14:35:39 nklasens Exp $
19: * @since MMBase-1.8
20: */
21: public class FunctionSet extends FunctionProvider {
22:
23: private String name;
24: private String description;
25:
26: public FunctionSet(String name, String description) {
27: this .name = name;
28: this .description = description;
29: }
30:
31: public String getName() {
32: return name;
33: }
34:
35: public String getDescription() {
36: return description;
37: }
38:
39: public void setDescription(String description) {
40: this.description = description;
41: }
42:
43: }
|