01: /*
02: * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved
03: *
04: * This file is part of Resin(R) Open Source
05: *
06: * Each copy or derived work must preserve the copyright notice and this
07: * notice unmodified.
08: *
09: * Resin Open Source is free software; you can redistribute it and/or modify
10: * it under the terms of the GNU General Public License as published by
11: * the Free Software Foundation; either version 2 of the License, or
12: * (at your option) any later version.
13: *
14: * Resin Open Source is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
17: * of NON-INFRINGEMENT. See the GNU General Public License for more
18: * details.
19: *
20: * You should have received a copy of the GNU General Public License
21: * along with Resin Open Source; if not, write to the
22: * Free SoftwareFoundation, Inc.
23: * 59 Temple Place, Suite 330
24: * Boston, MA 02111-1307 USA
25: *
26: * @author Scott Ferguson
27: */
28:
29: package com.caucho.es.wrapper;
30:
31: import java.beans.IntrospectionException;
32: import java.lang.reflect.Modifier;
33:
34: class NamedPropertyDescriptor extends ESPropertyDescriptor {
35: ESMethodDescriptor namedGetter;
36: ESMethodDescriptor namedSetter;
37: ESMethodDescriptor namedRemover;
38: ESMethodDescriptor namedIterator;
39:
40: public ESMethodDescriptor getNamedReadMethod() {
41: return namedGetter;
42: }
43:
44: public ESMethodDescriptor getNamedWriteMethod() {
45: return namedSetter;
46: }
47:
48: public ESMethodDescriptor getNamedRemoveMethod() {
49: return namedRemover;
50: }
51:
52: public ESMethodDescriptor getNamedIteratorMethod() {
53: return namedIterator;
54: }
55:
56: public boolean isStatic() {
57: if (namedGetter != null) {
58: int modifiers = namedGetter.getMethod().getModifiers();
59: return Modifier.isStatic(modifiers);
60: } else if (namedSetter != null) {
61: int modifiers = namedSetter.getMethod().getModifiers();
62: return Modifier.isStatic(modifiers);
63: } else
64: return false;
65: }
66:
67: public boolean isStaticVirtual() {
68: if (namedGetter != null) {
69: return namedGetter.isStaticVirtual();
70: } else if (namedSetter != null) {
71: return namedSetter.isStaticVirtual();
72: } else
73: return false;
74: }
75:
76: public NamedPropertyDescriptor(String propertyName, Class beanClass)
77: throws IntrospectionException {
78: super (propertyName, null, null, null);
79: }
80:
81: public NamedPropertyDescriptor(String propertyName,
82: ESMethodDescriptor getter, ESMethodDescriptor setter,
83: ESMethodDescriptor namedGetter,
84: ESMethodDescriptor namedSetter,
85: ESMethodDescriptor namedRemover,
86: ESMethodDescriptor namedIterator)
87: throws IntrospectionException {
88: super(propertyName, null, getter, setter);
89:
90: this.namedGetter = namedGetter;
91: this.namedSetter = namedSetter;
92: this.namedRemover = namedRemover;
93: this.namedIterator = namedIterator;
94: }
95: }
|