01: /*
02: * $Id: ListToList.java,v 1.1 2003/08/17 06:06:12 ajzeneski Exp $
03: *
04: * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org
05: *
06: * Permission is hereby granted, free of charge, to any person obtaining a
07: * copy of this software and associated documentation files (the "Software"),
08: * to deal in the Software without restriction, including without limitation
09: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10: * and/or sell copies of the Software, and to permit persons to whom the
11: * Software is furnished to do so, subject to the following conditions:
12: *
13: * The above copyright notice and this permission notice shall be included
14: * in all copies or substantial portions of the Software.
15: *
16: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17: * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20: * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
21: * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
22: * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23: */
24: package org.ofbiz.minilang.method.envops;
25:
26: import java.util.*;
27:
28: import org.w3c.dom.*;
29: import org.ofbiz.base.util.*;
30: import org.ofbiz.minilang.*;
31: import org.ofbiz.minilang.method.*;
32:
33: /**
34: * Copies an environment field to a list
35: *
36: * @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a>
37: * @version $Revision: 1.1 $
38: * @since 2.0
39: */
40: public class ListToList extends MethodOperation {
41:
42: public static final String module = ListToList.class.getName();
43:
44: ContextAccessor listAcsr;
45: ContextAccessor toListAcsr;
46:
47: public ListToList(Element element, SimpleMethod simpleMethod) {
48: super (element, simpleMethod);
49: listAcsr = new ContextAccessor(element
50: .getAttribute("list-name"));
51: toListAcsr = new ContextAccessor(element
52: .getAttribute("to-list-name"));
53: }
54:
55: public boolean exec(MethodContext methodContext) {
56: Object fieldVal = null;
57:
58: List fromList = (List) listAcsr.get(methodContext);
59: List toList = (List) toListAcsr.get(methodContext);
60:
61: if (fromList == null) {
62: if (Debug.infoOn())
63: Debug.logInfo("List not found with name " + listAcsr
64: + ", not copying list", module);
65: return true;
66: }
67:
68: if (toList == null) {
69: if (Debug.verboseOn())
70: Debug.logVerbose("List not found with name "
71: + toListAcsr + ", creating new list", module);
72: toList = new LinkedList();
73: toListAcsr.put(methodContext, toList);
74: }
75:
76: toList.addAll(fromList);
77: return true;
78: }
79: }
|