I have an SWT tree I've populated from a 2d array list but it's not coming out quite right. I'm trying to group the top tree items by item number, and I'm not having any luck with my algorithm. I've attached a picture to explain a little bit better. item 4324226 appears twice with a different child item, and I would like to group both children under one parent.

Here is my code for the tree. Any ideas? Is there something simple I'm overlooking?
long[][] listOrders;
listOrders = database.getUnfinishedOrders();
for (int i=0; i<listOrders.length; i++) {
TreeItem iItem = new TreeItem (tree, 0);
iItem.setText (Long.toString(listOrders[i][0]));
for (int j=1; j<listOrders[i].length; j++) {
TreeItem jItem = new TreeItem (iItem, 0);
jItem.setText (Long.toString(listOrders[i][j]));
}
}