KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > config > ActionHandlerNode


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.controller.actionflow.config;
8
9
10 /**
11  * This class is the Node implementation for ActionHandlers.
12  * Currently, this does not function differently from the
13  * BaseNode object and is just a placeholder in case future
14  * enhancements are required.
15  *
16  *
17  * @author Brian Pontarelli
18  * @since 2.0
19  * @version 2.0
20  */

21 public class ActionHandlerNode extends BaseNode implements Node {
22
23     /**
24      * Constructs a new <code>ActionHandlerNode</code> using the information in
25      * the {@link BaseNode.BaseValues BaseNode.BaseValues} given.
26      *
27      * @param values The BaseValues that contains the values for this Node
28      * @param namespace The Namespace this Node belongs to
29      * @asserts If values is null or namespace is null
30      */

31     public ActionHandlerNode(BaseNode.BaseValues values, Namespace namespace) {
32         super(values, namespace);
33     }
34 }
Popular Tags