{
Measure m = ch.getMeasure(i);
for (Map.Entry<Integer,Beat> b : m.getBeats().entrySet())
{
Beat c = b.getValue();
int k = b.getKey();
ROW_LOOP:
for (int j = 0; j < cols; j++)
{
Notes z = c.getNote(j);
if (z.getType() == '0')
{
continue ROW_LOOP;
}
Point p = new Point(j * ARROW_SIZE + ARROW_SIZE,
i * MAX_BEATS + k + ARROW_SIZE);
NoteComponent n = new NoteComponent(c.getNote(j),
Syncs.getHighestEnum(k),
Arrows.getArrowByColumn(j, s));
n.setSize(ARR);
n.setPreferredSize(ARR);
n.setMaximumSize(ARR);