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.transformers;
11:
12: /**
13: * Describes what encoding is configured.
14: */
15:
16: public class Config {
17: public Class<?> clazz;
18: public int config;
19: public String info;
20:
21: public Config(Class<?> c, int i) {
22: clazz = c;
23: config = i;
24: info = "";
25: }
26:
27: public Config(Class<?> c, int i, String in) {
28: clazz = c;
29: config = i;
30: info = in;
31: }
32:
33: public String toString() {
34: return "" + config + ":" + info;
35: }
36: }
|