1 28 29 package com.caucho.jsf.html; 30 31 import java.io.*; 32 import java.util.*; 33 34 import javax.faces.*; 35 import javax.faces.component.*; 36 import javax.faces.context.*; 37 import javax.faces.render.*; 38 39 42 class HtmlBaseRenderer extends Renderer 43 { 44 public void encodeChildren(FacesContext context, UIComponent component) 45 throws IOException 46 { 47 if (! getRendersChildren()) 48 return; 49 50 if (context == null) 51 throw new NullPointerException (); 52 53 if (component == null) 54 throw new NullPointerException (); 55 56 } 58 59 public String toString() 60 { 61 return "HtmlBaseRenderer[]"; 62 } 63 } 64 | Popular Tags |