[ http://issues.apache.org/jira/browse/MYFACES-171?page=comments#action_62347 ] Mathias Broekelmann commented on MYFACES-171: ---------------------------------------------
Forgot the moved UIColumns file: Index: src/components/org/apache/myfaces/custom/crosstable/UIColumns.java =================================================================== RCS file: /home/cvspublic/incubator-myfaces/src/components/org/apache/myfaces/custom/crosstable/UIColumns.java diff -N UIColumns.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ UIColumns.java 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,56 @@ +/* + * Copyright 2004 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.myfaces.custom.crosstable; + +import javax.faces.component.UIData; + +/** + * @author Mathias Broekelmann (latest modification by $Author: matzew $) + * @version $Revision: 1.1 $ $Date: 2005/03/29 11:40:50 $ + * $Log: UIColumns.java,v $ + * Revision 1.1 2005/03/29 11:40:50 matzew + * added new crosstable component (x:columns). Contributed by Mathias Broekelmann + * + */ +public class UIColumns extends UIData +{ + public static final String COMPONENT_TYPE = "org.apache.myfaces.Columns"; + public static final String COMPONENT_FAMILY = UIData.COMPONENT_FAMILY; + + /** + * + */ + public UIColumns() + { + super(); + } + + /** + * @see javax.faces.component.UIComponentBase#getRendererType() + */ + public String getRendererType() + { + return null; + } + + /** + * @see javax.faces.component.UIComponent#getFamily() + */ + public String getFamily() + { + return COMPONENT_FAMILY; + } +} > Wrong src tree for UIColumns > ---------------------------- > > Key: MYFACES-171 > URL: http://issues.apache.org/jira/browse/MYFACES-171 > Project: MyFaces > Type: Task > Versions: 1.0.9 beta > Reporter: Manfred Geiler > Priority: Minor > > UIColumns class for new crosstable component should be moved from share src > tree to components tree. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira
