KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > form > config > FormConfigStruct


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.form.config;
8
9
10 import com.inversoft.verge.mvc.config.BaseConfigStruct;
11 import com.inversoft.verge.mvc.controller.form.FormMVCMetaData;
12
13
14 /**
15  * <p>
16  * This class is s simple struct that holds the configuration
17  * objects for the Form-Based MVC.
18  * </p>
19  *
20  * @author Brian Pontarelli
21  * @since 2.0
22  * @version 2.0
23  */

24 public class FormConfigStruct extends BaseConfigStruct {
25
26     public final ActionConfig actionConfig;
27     public final FormMVCMetaData metaData;
28
29
30     /**
31      * Constructs a new <code>FormConfigStruct</code> with the given references.
32      */

33     public FormConfigStruct(FormConfig formConfig, ActionConfig actionConfig,
34             FormMVCMetaData metaData) {
35         super(formConfig);
36         this.actionConfig = actionConfig;
37         this.metaData = metaData;
38     }
39 }
Popular Tags