KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > portal > pluto > om > common > TagDefinitionSet


1 /*
2  * Copyright 2003-2005 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.portal.pluto.om.common;
17
18 import java.util.Locale JavaDoc;
19
20 /**
21  *
22  * @version $Id: TagDefinitionSet.java 326883 2005-10-20 11:01:21Z cziegeler $
23  */

24 public class TagDefinitionSet extends AbstractSupportSet
25     implements java.io.Serializable JavaDoc, Support {
26
27     // DescriptionSet implemenation.
28
public TagDefinition get(Locale JavaDoc locale) {
29         return null;
30     }
31
32     /**
33      * @see org.apache.cocoon.portal.pluto.om.common.Support#postBuild(java.lang.Object)
34      */

35     public void postBuild(Object JavaDoc parameter) throws Exception JavaDoc {
36         // nothing to do
37
}
38
39     /**
40      * @see org.apache.cocoon.portal.pluto.om.common.Support#postLoad(java.lang.Object)
41      */

42     public void postLoad(Object JavaDoc parameter) throws Exception JavaDoc {
43         // nothing to do
44
}
45
46     /**
47      * @see org.apache.cocoon.portal.pluto.om.common.Support#postStore(java.lang.Object)
48      */

49     public void postStore(Object JavaDoc parameter) throws Exception JavaDoc {
50         // nothing to do
51
}
52
53     /**
54      * @see org.apache.cocoon.portal.pluto.om.common.Support#preBuild(java.lang.Object)
55      */

56     public void preBuild(Object JavaDoc parameter) throws Exception JavaDoc {
57         // nothing to do
58
}
59
60     /**
61      * @see org.apache.cocoon.portal.pluto.om.common.Support#preStore(java.lang.Object)
62      */

63     public void preStore(Object JavaDoc parameter) throws Exception JavaDoc {
64         // nothing to do
65
}
66 }
67
Popular Tags