1 14 15 package com.sun.facelets.tag.ui; 16 17 import javax.faces.component.UIComponentBase; 18 19 public final class ComponentRef extends UIComponentBase { 20 21 public final static String COMPONENT_TYPE = "facelets.ui.ComponentRef"; 22 public final static String COMPONENT_FAMILY = "facelets"; 23 24 public ComponentRef() { 25 super(); 26 } 27 28 public String getFamily() { 29 return COMPONENT_FAMILY; 30 } 31 32 } 33 | Popular Tags |