01: /*
02: * Copyright 2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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 javax.faces.render;
17:
18: import javax.faces.context.FacesContext;
19: import java.util.Iterator;
20:
21: /**
22: * see Javadoc of <a href="http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
23: *
24: * @author Manfred Geiler (latest modification by $Author: mbr $)
25: * @version $Revision: 513689 $ $Date: 2007-03-02 11:14:11 +0100 (Fr, 02 Mrz 2007) $
26: */
27: public abstract class RenderKitFactory {
28: public static final String HTML_BASIC_RENDER_KIT = "HTML_BASIC";
29:
30: public abstract void addRenderKit(String renderKitId,
31: RenderKit renderKit);
32:
33: public abstract RenderKit getRenderKit(FacesContext context,
34: String renderKitId);
35:
36: public abstract Iterator<String> getRenderKitIds();
37: }
|