001    /*******************************************************************************
002     * Copyright (C) PicoContainer Organization. All rights reserved.
003     * ---------------------------------------------------------------------------
004     * The software in this package is published under the terms of the BSD style
005     * license a copy of which has been included with this distribution in the
006     * LICENSE.txt file.
007     ******************************************************************************/
008    package org.picocontainer.script.groovy.nodes;
009    
010    import java.util.Map;
011    
012    /**
013     * Handles 'doCall' nodes.
014     * 
015     * @author James Strachan
016     * @author Paul Hammant
017     * @author Aslak Hellesøy
018     * @author Michael Rimov
019     * @author Mauro Talevi
020     */
021    @SuppressWarnings("serial")
022    public class DoCallNode extends AbstractBuilderNode {
023    
024        public static final String NODE_NAME = "doCall";
025    
026        public DoCallNode() {
027            super(NODE_NAME);
028        }
029    
030        public Object createNewNode(final Object current, final Map<String,Object> attributes) {
031            // TODO does this node need to be handled?
032            return null;
033        }
034    }