01: /*
02: * File : $Source: /usr/local/cvs/opencms/src-modules/org/opencms/frontend/templateone/form/CmsEmptyField.java,v $
03: * Date : $Date: 2008-02-27 12:05:22 $
04: * Version: $Revision: 1.5 $
05: *
06: * This library is part of OpenCms -
07: * the Open Source Content Management System
08: *
09: * Copyright (c) 2002 - 2008 Alkacon Software GmbH (http://www.alkacon.com)
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: * For further information about Alkacon Software GmbH, please see the
22: * company website: http://www.alkacon.com
23: *
24: * For further information about OpenCms, please see the
25: * project website: http://www.opencms.org
26: *
27: * You should have received a copy of the GNU Lesser General Public
28: * License along with this library; if not, write to the Free Software
29: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30: */
31:
32: package org.opencms.frontend.templateone.form;
33:
34: import org.opencms.i18n.CmsMessages;
35:
36: /**
37: * Represents a empty field.<p>
38: *
39: */
40: public class CmsEmptyField extends A_CmsField {
41:
42: /** HTML field type: hidden field. */
43: private static final String TYPE = "empty";
44:
45: /**
46: * Returns the type of the input field, e.g. "text" or "select".<p>
47: *
48: * @return the type of the input field
49: */
50: public static String getStaticType() {
51:
52: return TYPE;
53: }
54:
55: /**
56: * @see org.opencms.frontend.templateone.form.I_CmsField#buildHtml(CmsFormHandler, org.opencms.i18n.CmsMessages, String)
57: */
58: public String buildHtml(CmsFormHandler formHandler,
59: CmsMessages messages, String errorKey) {
60:
61: StringBuffer buf = new StringBuffer();
62: //line #1 start
63: if (showRowStart(messages.key("form.html.col.two"))) {
64: buf.append(messages.key("form.html.row.start"))
65: .append("\n");
66: }
67:
68: //line #2 start
69: buf.append(messages.key("form.html.label.start")).append(
70: " ").append(messages.key("form.html.label.end"))
71: .append("\n");
72:
73: //line #3 start
74: buf.append(messages.key("form.html.field.start")).append(
75: " ").append(messages.key("form.html.field.end"))
76: .append("\n");
77:
78: //line #1 end
79: if (showRowEnd(messages.key("form.html.col.two"))) {
80: buf.append(messages.key("form.html.row.end")).append("\n");
81: }
82: return buf.toString();
83: }
84:
85: /**
86: * @see org.opencms.frontend.templateone.form.I_CmsField#getType()
87: */
88: public String getType() {
89:
90: return TYPE;
91: }
92:
93: }
|