01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/jsf/tags/sakai_2-4-1/widgets-sun/src/java/org/sakaiproject/jsf/util/JSFDepends.java $
03: * $Id: JSFDepends.java 9278 2006-05-10 23:29:21Z ray@media.berkeley.edu $
04: **********************************************************************************
05: *
06: * Copyright (c) 2003, 2004, 2005 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.jsf.util;
21:
22: import org.apache.commons.logging.Log;
23: import org.apache.commons.logging.LogFactory;
24:
25: /**
26: * This source file collects the dependencies of the Sakai tag library
27: * on the JSF implementation into one place.
28: * This is where JSF tags, renderers, and components that extend the
29: * Sun JSF implementation (or the MyFaces implementation) live.
30: * To switch between Sun RI vs. MyFaces, just comment/uncomment
31: * the appropriate block of inner classes and recompile.
32: */
33: public class JSFDepends {
34: private static final Log logger = LogFactory
35: .getLog(JSFDepends.class);
36:
37: /** Sun JSF RI dependent classes */
38: public static class CommandButtonTag extends
39: com.sun.faces.taglib.html_basic.CommandButtonTag {
40: }
41:
42: public static class InputTextTag extends
43: com.sun.faces.taglib.html_basic.InputTextTag {
44: }
45:
46: public static class OutputTextTag extends
47: com.sun.faces.taglib.html_basic.OutputTextTag {
48: }
49:
50: public static class PanelGridTag extends
51: com.sun.faces.taglib.html_basic.PanelGridTag {
52: }
53:
54: public static class DataTableTag extends
55: com.sun.faces.taglib.html_basic.DataTableTag {
56: }
57:
58: public static class MessagesTag extends
59: com.sun.faces.taglib.html_basic.MessagesTag {
60: }
61:
62: public static class ColumnTag extends
63: com.sun.faces.taglib.html_basic.ColumnTag {
64: }
65:
66: public static class ButtonRenderer extends
67: com.sun.faces.renderkit.html_basic.ButtonRenderer {
68: }
69:
70: public static class CommandLinkRenderer extends
71: com.sun.faces.renderkit.html_basic.CommandLinkRenderer {
72: }
73:
74: }
|