1 16 package org.apache.myfaces.cactus; 17 18 import java.util.Date ; 19 20 21 24 public class TestDataProviderBean 25 { 26 27 public long getPrimitiveLong() 28 { 29 return 23L; 30 } 31 32 33 public Long getLong() 34 { 35 return new Long (99); 36 } 37 38 39 public Date getDate() 40 { 41 return new Date (23); 42 } 43 44 public String getString() { 45 return "test"; 46 } 47 } 48 | Popular Tags |