01: //--------------------------------------------------------------------------
02: // Copyright (c) 2004, Drew Davidson and Luke Blanshard
03: // All rights reserved.
04: //
05: // Redistribution and use in source and binary forms, with or without
06: // modification, are permitted provided that the following conditions are
07: // met:
08: //
09: // Redistributions of source code must retain the above copyright notice,
10: // this list of conditions and the following disclaimer.
11: // Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: // Neither the name of the Drew Davidson nor the names of its contributors
15: // may be used to endorse or promote products derived from this software
16: // without specific prior written permission.
17: //
18: // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19: // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20: // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22: // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24: // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25: // OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26: // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27: // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28: // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29: // DAMAGE.
30: //--------------------------------------------------------------------------
31: package org.ognl.test.objects;
32:
33: public class Indexed extends Object {
34: private String[] values = new String[] { "foo", "bar", "baz" };
35:
36: public Indexed() {
37: super ();
38: }
39:
40: public Indexed(String[] values) {
41: super ();
42: this .values = values;
43: }
44:
45: /* Indexed property "values" */
46: public String[] getValues() {
47: return values;
48: }
49:
50: public void setValues(String[] value) {
51: values = value;
52: }
53:
54: /**
55: This method returns the string from the array and appends "xxx" to
56: distinguish the "get" method from the direct array access.
57: */
58: public String getValues(int index) {
59: return values[index] + "xxx";
60: }
61:
62: public void setValues(int index, String value) {
63: if (value.endsWith("xxx")) {
64: values[index] = value.substring(0, value.length() - 3);
65: } else {
66: values[index] = value;
67: }
68: }
69: }
|