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