01: //--------------------------------------------------------------------------
02: // Copyright (c) 1998-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 ognl;
32:
33: import java.util.*;
34:
35: /**
36: * Implementation of PropertyAccessor that provides "property" reference to
37: * "next" and "hasNext".
38: * @author Luke Blanshard (blanshlu@netscape.net)
39: * @author Drew Davidson (drew@ognl.org)
40: */
41: public class IteratorPropertyAccessor extends ObjectPropertyAccessor
42: implements PropertyAccessor // This is here to make javadoc show this class as an implementor
43: {
44: public Object getProperty(Map context, Object target, Object name)
45: throws OgnlException {
46: Object result;
47: Iterator iterator = (Iterator) target;
48:
49: if (name instanceof String) {
50: if (name.equals("next")) {
51: result = iterator.next();
52: } else {
53: if (name.equals("hasNext")) {
54: result = iterator.hasNext() ? Boolean.TRUE
55: : Boolean.FALSE;
56: } else {
57: result = super .getProperty(context, target, name);
58: }
59: }
60: } else {
61: result = super .getProperty(context, target, name);
62: }
63: return result;
64: }
65:
66: public void setProperty(Map context, Object target, Object name,
67: Object value) throws OgnlException {
68: throw new IllegalArgumentException("can't set property " + name
69: + " on Iterator");
70: }
71: }
|