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