KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > forms > formmodel > WidgetDefinitionBuilderContext


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.cocoon.forms.formmodel;
17
18 import org.apache.cocoon.forms.formmodel.library.Library;
19
20 /**
21  * Holds context information for the building phase.
22  *
23  * @version $Id: WidgetDefinitionBuilderContext.java 289538 2005-09-16 13:46:22Z sylvain $
24  */

25 public class WidgetDefinitionBuilderContext {
26
27     protected WidgetDefinition superDefinition = null;
28     protected Library localLibrary = null;
29     
30     public WidgetDefinitionBuilderContext() {
31         this.superDefinition = null;
32         this.localLibrary = null;
33     }
34     
35     public WidgetDefinitionBuilderContext(WidgetDefinitionBuilderContext other) {
36         this.superDefinition = other.superDefinition;
37         this.localLibrary = other.localLibrary;
38     }
39     
40     public WidgetDefinition getSuperDefinition() {
41         return superDefinition;
42     }
43     public void setSuperDefinition(WidgetDefinition def) {
44         superDefinition = def;
45     }
46     
47     public Library getLocalLibrary() {
48         return localLibrary;
49     }
50     public void setLocalLibrary(Library lib) {
51         localLibrary = lib;
52     }
53     
54 }
55
Popular Tags