1 4 package org.oddjob.designer.view; 5 6 import java.text.ParseException ; 7 8 import org.oddjob.designer.model.DateInput; 9 import org.oddjob.util.DateHelper; 10 11 public class DateInputDummy extends DummyView { 12 13 private DateInput dateInput; 14 15 public DateInputDummy(DateInput dateInput) { 16 this.dateInput = dateInput; 17 } 18 19 public void attribute(String attribute) { 20 try { 21 dateInput.setDate(DateHelper.parseDate(attribute)); 22 } catch (ParseException e) { 23 throw new IllegalArgumentException (attribute); 24 } 25 } 26 27 public String attribute() { 28 return DateHelper.formatDate(dateInput.getDate()); 29 } 30 } 31 | Popular Tags |