01: /*****************************************************************************
02: * Copyright (C) NanoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Original code by James Strachan *
09: *****************************************************************************/package org.nanocontainer.script.groovy.buildernodes;
10:
11: import java.util.Map;
12:
13: /**
14: * Handles 'doCall' nodes.
15: * @author James Strachan
16: * @author Paul Hammant
17: * @author Aslak Hellesøy
18: * @author Michael Rimov
19: * @author Mauro Talevi
20: * @version $Revision: 2695 $
21: */
22: public class DoCallNode extends AbstractBuilderNode {
23:
24: public static final String NODE_NAME = "doCall";
25:
26: public DoCallNode() {
27: super (NODE_NAME);
28: }
29:
30: public Object createNewNode(final Object current,
31: final Map attributes) {
32: // TODO does this node need to be handled?
33: return null;
34: }
35: }
|