1 19 20 package org.objectweb.jac.aspects.gui.swing; 21 22 import org.objectweb.jac.aspects.gui.DateFormat; 23 import org.objectweb.jac.core.rtti.FieldItem; 24 25 28 29 public class DateEditor extends FormatEditor 30 { 31 34 public DateEditor(Object substance, FieldItem field) { 35 super(substance,field); 36 } 37 38 protected void initFormat(FieldItem field) { 39 format = new DateFormat(field); 40 } 41 } 42 | Popular Tags |