1 16 package org.apache.cocoon.forms.samples; 17 18 import java.util.Calendar ; 19 import java.util.Date ; 20 21 import org.apache.cocoon.forms.datatype.AbstractJavaSelectionList; 22 23 public class DateTestJavaSelectionList extends AbstractJavaSelectionList { 24 25 28 protected boolean build() throws Exception { 29 Calendar c = Calendar.getInstance(); 30 c.set(2003, 0, 1); 31 this.addItem(c.getTime(), (String )null); 32 c.set(2004, 0, 1); 33 this.addItem(c.getTime(), (String )null); 34 this.addItem(new Date (), (String )null); 35 return false; 36 } 37 } 38 | Popular Tags |