KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nanocontainer > script > groovy > buildernodes > DoCallNode


1 /*****************************************************************************
2  * Copyright (C) NanoContainer Organization. All rights reserved. *
3  * ------------------------------------------------------------------------- *
4  * The software in this package is published under the terms of the BSD *
5  * style license a copy of which has been included with this distribution in *
6  * the LICENSE.txt file. *
7  * *
8  * Original code by James Strachan *
9  *****************************************************************************/

10
11 package org.nanocontainer.script.groovy.buildernodes;
12
13 import java.util.Map JavaDoc;
14
15 /**
16  * Handles 'doCall' nodes.
17  * @author James Strachan
18  * @author Paul Hammant
19  * @author Aslak Hellesøy
20  * @author Michael Rimov
21  * @author Mauro Talevi
22  * @version $Revision: 2695 $
23  */

24 public class DoCallNode extends AbstractBuilderNode {
25
26     public static final String JavaDoc NODE_NAME = "doCall";
27
28     public DoCallNode() {
29         super(NODE_NAME);
30     }
31
32     public Object JavaDoc createNewNode(final Object JavaDoc current, final Map JavaDoc attributes) {
33         // TODO does this node need to be handled?
34
return null;
35     }
36 }
37
Popular Tags