1 package thinlet.drafts;2 3 import thinlet.*;4 5 public class Chart {6 7 public void update(Thinlet thinlet, Object chart) {8 ChartBean chartbean = (ChartBean) thinlet.getComponent(chart, "bean");9 chartbean.update();10 thinlet.repaint(chart);11 }12 }