public abstract class RenderKit extends Object
| Constructor and Description | 
|---|
| RenderKit() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addClientBehaviorRenderer(String type,
                         ClientBehaviorRenderer renderer) | 
| abstract void | addRenderer(String family,
           String rendererType,
           Renderer renderer) | 
| abstract ResponseStream | createResponseStream(OutputStream out) | 
| abstract ResponseWriter | createResponseWriter(Writer writer,
                    String contentTypeList,
                    String characterEncoding) | 
| ClientBehaviorRenderer | getClientBehaviorRenderer(String type) | 
| Iterator<String> | getClientBehaviorRendererTypes() | 
| Iterator<String> | getComponentFamilies()
 Return an  Iteratorover the component-family entries supported by thisRenderKitinstance. | 
| abstract Renderer | getRenderer(String family,
           String rendererType) | 
| Iterator<String> | getRendererTypes(String componentFamily)
 Return an  Iteratorover the renderer-type entries for the given component-family. | 
| abstract ResponseStateManager | getResponseStateManager() | 
public void addClientBehaviorRenderer(String type, ClientBehaviorRenderer renderer)
public abstract ResponseStream createResponseStream(OutputStream out)
public abstract ResponseWriter createResponseWriter(Writer writer, String contentTypeList, String characterEncoding)
public ClientBehaviorRenderer getClientBehaviorRenderer(String type)
public Iterator<String> getComponentFamilies()
 Return an Iterator over the component-family entries supported by this RenderKit
 instance.
 
 The default implementation of this method returns an empty Iterator
 
RenderKit.public Iterator<String> getRendererTypes(String componentFamily)
 Return an Iterator over the renderer-type entries for the given component-family.
 
 If the specified componentFamily is not known to this RenderKit implementation, return
 an empty Iterator
 
 The default implementation of this method returns an empty Iterator
 
componentFamily - one of the members of the Iterator returned by getComponentFamilies()public abstract ResponseStateManager getResponseStateManager()
Copyright © 2021 The Apache Software Foundation. All rights reserved.