01: // /////////////////////////////
02: // Makumba, Makumba tag library
03: // Copyright (C) 2000-2003 http://www.makumba.org
04: //
05: // This library is free software; you can redistribute it and/or
06: // modify it under the terms of the GNU Lesser General Public
07: // License as published by the Free Software Foundation; either
08: // version 2.1 of the License, or (at your option) any later version.
09: //
10: // This library is distributed in the hope that it will be useful,
11: // but WITHOUT ANY WARRANTY; without even the implied warranty of
12: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: // Lesser General Public License for more details.
14: //
15: // You should have received a copy of the GNU Lesser General Public
16: // License along with this library; if not, write to the Free Software
17: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18: //
19: // -------------
20: // $Id: setintEnumEditor.java 1749 2007-10-03 15:56:11Z manuel_gay $
21: // $Name$
22: /////////////////////////////////////
23:
24: package org.makumba.forms.html;
25:
26: import java.util.Vector;
27:
28: import org.makumba.commons.formatters.FieldFormatter;
29: import org.makumba.commons.formatters.RecordFormatter;
30:
31: public class setintEnumEditor extends setcharEnumEditor {
32:
33: private static final class SingletonHolder {
34: static final FieldEditor singleton = new setintEnumEditor();
35: }
36:
37: private setintEnumEditor() {
38: }
39:
40: public static FieldFormatter getInstance() {
41: return SingletonHolder.singleton;
42: }
43:
44: public Object getOptionValue(RecordFormatter rf, int fieldIndex,
45: Object options, int i) {
46: return new Integer(rf.dd.getFieldDefinition(fieldIndex)
47: .getIntAt(i));
48: }
49:
50: public Object readFrom(RecordFormatter rf, int fieldIndex,
51: org.makumba.commons.attributes.HttpParameters par,
52: String suffix) {
53: Object o = par
54: .getParameter(getInputName(rf, fieldIndex, suffix));
55:
56: if (o == null || o == org.makumba.Pointer.NullSet)
57: return o;
58: if (o instanceof Vector) {
59: Vector v = (Vector) o;
60: for (int i = 0; i < v.size(); i++)
61: v
62: .setElementAt(toInt(rf, fieldIndex, v
63: .elementAt(i)), i);
64: return v;
65: }
66: return toInt(rf, fieldIndex, o);
67: }
68: }
|