dev@jsftemplating.java.net

questions on component factories and components

From: Michael Phoenix <michaelandrewphoenix_at_gmail.com>
Date: Tue, 27 Nov 2007 17:30:34 -0800

I'm still working on trying to get an understanding of JSGT architecture and
am having a little problem understanding the component factory code and
finding the code for the individual components.
Specifically I was looking into the code for TextFieldFactory. The comments
and last statement in the class prompted some questions that I am having
problems getting a handle on.

 /**
     * <p> The <code>UIComponent</code> type that must be registered in the
     * <code>faces-config.xml</code> file mapping to the UIComponent class
     * to use for this <code>UIComponent</code>.</p>
     */
    public static final String COMPONENT_TYPE = "com.sun.webui.jsf.TextField";
}

1. Where is the faces-config.xml located? I can't find any such xml
file in the jsft project or the demo project.

2. Where do I find the code for the component itself, in this case
TextField? It's not in the j2ee javadocs.

3. Is com.sun.webui.jsf a package?