Author: nbelaevski
Date: 2009-03-17 10:10:58 -0400 (Tue, 17 Mar 2009)
New Revision: 12978
Added:
trunk/test-applications/regressionArea/regressionArea-ejb/src/main/java/org/richfaces/regressionarea/issues/rf6267/
trunk/test-applications/regressionArea/regressionArea-ejb/src/main/java/org/richfaces/regressionarea/issues/rf6267/Bean.java
Log:
https://jira.jboss.org/jira/browse/RF-6267
Added:
trunk/test-applications/regressionArea/regressionArea-ejb/src/main/java/org/richfaces/regressionarea/issues/rf6267/Bean.java
===================================================================
---
trunk/test-applications/regressionArea/regressionArea-ejb/src/main/java/org/richfaces/regressionarea/issues/rf6267/Bean.java
(rev 0)
+++
trunk/test-applications/regressionArea/regressionArea-ejb/src/main/java/org/richfaces/regressionarea/issues/rf6267/Bean.java 2009-03-17
14:10:58 UTC (rev 12978)
@@ -0,0 +1,50 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.regressionarea.issues.rf6267;
+
+import java.util.Arrays;
+
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Scope;
+
+/**
+ * This test case for: <a
href="https://jira.jboss.org/jira/browse/RF-6267">RF-6267 -
+ * Columns: NPE when use rendered attribute</a>
+ *
+ * @author Nick Belaevski
+ * @since 3.3.1
+ */
+@Name("rf6267")
+(a)Scope(ScopeType.SESSION)
+public class Bean {
+
+ private static final Object numbers = Arrays.asList(0, 1, 2, 3, 4, 5);
+
+ public Object getNumbers() {
+ return numbers;
+ }
+
+ public boolean isColumnRendered(Object columnNumber) {
+ return ((Integer) columnNumber).intValue() != 1;
+ }
+}