01: // ========================================================================
02: // $Id: Text.java,v 1.2 2004/05/09 20:31:28 gregwilkins Exp $
03: // Copyright 1996-2004 Mort Bay Consulting Pty. Ltd.
04: // ------------------------------------------------------------------------
05: // Licensed under the Apache License, Version 2.0 (the "License");
06: // you may not use this file except in compliance with the License.
07: // You may obtain a copy of the License at
08: // http://www.apache.org/licenses/LICENSE-2.0
09: // Unless required by applicable law or agreed to in writing, software
10: // distributed under the License is distributed on an "AS IS" BASIS,
11: // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12: // See the License for the specific language governing permissions and
13: // limitations under the License.
14: // ========================================================================
15:
16: package org.mortbay.html;
17:
18: import java.util.Vector;
19:
20: /* -------------------------------------------------------------------- */
21: /** A simple block of straight text.
22: * @deprecated all Composites now take Strings direct.
23: */
24: public class Text extends Composite {
25: /* ----------------------------------------------------------------- */
26: public Text() {
27: }
28:
29: /* ----------------------------------------------------------------- */
30: public Text(String s) {
31: add(s);
32: }
33:
34: /* ----------------------------------------------------------------- */
35: public Text(String[] s) {
36: add(s);
37: }
38:
39: /* ----------------------------------------------------------------- */
40: public Text add(String[] s) {
41: for (int i = 0; i < s.length; i++)
42: add(s[i]);
43: return this ;
44: }
45:
46: /* ----------------------------------------------------------------- */
47: public Text add(Vector v) {
48: for (int i = 0; i < v.size(); i++)
49: add(v.elementAt(i));
50: return this;
51: }
52: }
|