1 7 package org.ejtools.graph.editor; 8 9 import com.dreambean.awt.editors.TagsEditor; 10 11 17 public class GraphDelayEditor extends TagsEditor 18 { 19 20 public GraphDelayEditor() 21 { 22 super(new String []{ 23 "1.0 sec", 24 "2.5 sec", 25 "5 sec", 26 "10 sec", 27 "1 min", 28 "5 min"}, 29 new Object []{ 30 new Long (1000), 31 new Long (2500), 32 new Long (5000), 33 new Long (10000), 34 new Long (60000), 35 new Long (300000) 36 }); 37 } 38 } 39 40 | Popular Tags |