KickJava   Java API By Example, From Geeks To Geeks.

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


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 import com.inversoft.verge.mvc.config.BaseConfigStruct;
11 import com.inversoft.verge.mvc.config.BaseFormConfig;
12 import com.inversoft.verge.mvc.controller.actionflow.ActionFlowMetaData;
13
14
15 /**
16  * <p>
17  * A struct for holding all the necessary ActionFlow
18  * configuration.
19  * </p>
20  *
21  * @author Brian Pontarelli
22  */

23 public class ActionFlowConfigStruct extends BaseConfigStruct {
24
25     public ActionFlowMetaData actionFlowMetaData;
26
27     /**
28      * Construct a default empty struct
29      */

30     public ActionFlowConfigStruct() {
31         // Default
32
}
33
34     /**
35      * Construct a struct with the given object references
36      */

37     public ActionFlowConfigStruct(BaseFormConfig formConfig,
38             ActionFlowMetaData metaData) {
39         super(formConfig);
40         this.actionFlowMetaData = metaData;
41     }
42 }
43
Popular Tags