KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > woody > formmodel > AbstractContainerDefinition


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.woody.formmodel;
17
18 import java.util.Collection JavaDoc;
19 import java.util.List JavaDoc;
20
21 /**
22  * The {@link AbstractContainerDefinition} corresponding to an {@link AbstractContainerWidget}.
23  *
24  * @author Timothy Larson
25  * @version $Id: AbstractContainerDefinition.java 30932 2004-07-29 17:35:38Z vgritsenko $
26  */

27 public abstract class AbstractContainerDefinition
28         extends AbstractWidgetDefinition implements ContainerDefinition {
29     protected ContainerDefinitionDelegate definitions;
30
31     public AbstractContainerDefinition() {
32         definitions = new ContainerDefinitionDelegate(this);
33     }
34
35     public void createWidget(Widget parent, String JavaDoc id) {
36         definitions.createWidget(parent, id);
37     }
38
39     public void createWidgets(Widget parent) {
40         definitions.createWidgets(parent);
41     }
42
43     public void addWidgetDefinition(WidgetDefinition definition) throws Exception JavaDoc, DuplicateIdException {
44         definition.setParent(this);
45         definitions.addWidgetDefinition(definition);
46     }
47
48     public void resolve(List JavaDoc parents, WidgetDefinition parent) throws Exception JavaDoc {
49         definitions.resolve(parents, parent);
50     }
51
52     public boolean hasWidget(String JavaDoc id) {
53         return definitions.hasWidget(id);
54     }
55
56     public WidgetDefinition getWidgetDefinition(String JavaDoc id) {
57         return definitions.getWidgetDefinition(id);
58     }
59
60     public Collection JavaDoc getWidgetDefinitions() {
61         return definitions.getWidgetDefinitions();
62     }
63 }
64
Popular Tags