1 /** 2 * Licensed under the Common Development and Distribution License, 3 * you may not use this file except in compliance with the License. 4 * You may obtain a copy of the License at 5 * 6 * http://www.sun.com/cddl/ 7 * 8 * Unless required by applicable law or agreed to in writing, software 9 * distributed under the License is distributed on an "AS IS" BASIS, 10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 11 * implied. See the License for the specific language governing 12 * permissions and limitations under the License. 13 */ 14 15 package com.sun.facelets.tag.jsf; 16 17 import com.sun.facelets.tag.TagConfig; 18 19 /** 20 * Used in creating AbstractComponentHandler's and all implementations. 21 * 22 * @see com.sun.facelets.tag.AbstractComponentHandler 23 * @see com.sun.facelets.tag.jsf.ComponentHandler 24 * @author Jacob Hookom 25 * @version $Id: ComponentConfig.java,v 1.2 2005/08/24 04:38:50 jhook Exp $ 26 */ 27 public interface ComponentConfig extends TagConfig { 28 /** 29 * ComponentType to pass to the Application. Cannot be null. 30 * 31 * @return ComponentType to pass to the Application. Cannot be null. 32 */ 33 public String getComponentType(); 34 35 /** 36 * RendererType to set on created UIComponent instances. 37 * 38 * @return RendererType to set on created UIComponent instances 39 */ 40 public String getRendererType(); 41 } 42