// ================ Begin Forte Event Handler Translation ================
Panel p = CompoundFieldFactory.newPanel();
ColourChange.setBackground(p, Constants.C_BLUE);
Parent.set(p, UIutils.getForm(this));
for (int i = 1; i <= 200; i++) {
Line l = new Line();
l.setStartX(0);
l.setEndX(Width.get((JComponent)p));
l.setStartY(i*100);
l.setEndY(1*100);
ColourChange.setForeground(p, Constants.C_YELLOW);
Parent.set(l, p);
}
// ================ End Forte Event Handler Translation ================
}