
org.picocontainer.script.groovy.nodes.DoCallNode Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) PicoContainer Organization. All rights reserved.
* ---------------------------------------------------------------------------
* The software in this package is published under the terms of the BSD style
* license a copy of which has been included with this distribution in the
* LICENSE.txt file.
******************************************************************************/
package org.picocontainer.script.groovy.nodes;
import java.util.Map;
/**
* Handles 'doCall' nodes.
*
* @author James Strachan
* @author Paul Hammant
* @author Aslak Hellesøy
* @author Michael Rimov
* @author Mauro Talevi
*/
@SuppressWarnings("serial")
public class DoCallNode extends AbstractBuilderNode {
public static final String NODE_NAME = "doCall";
public DoCallNode() {
super(NODE_NAME);
}
public Object createNewNode(final Object current, final Map attributes) {
// TODO does this node need to be handled?
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy