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