01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.util;
06:
07: import ognl.EnumerationPropertyAccessor;
08: import ognl.ObjectPropertyAccessor;
09: import ognl.OgnlException;
10:
11: import java.util.Map;
12:
13: /**
14: * @author plightbo
15: */
16: public class XWorkEnumerationAcccessor extends
17: EnumerationPropertyAccessor {
18:
19: ObjectPropertyAccessor opa = new ObjectPropertyAccessor();
20:
21: public void setProperty(Map context, Object target, Object name,
22: Object value) throws OgnlException {
23: opa.setProperty(context, target, name, value);
24: }
25: }
|