InfoIf[] infoArr = new InfoIf[pluginList.length + services.length];
System.arraycopy(pluginList,0,infoArr,0,pluginList.length);
System.arraycopy(services,0,infoArr,pluginList.length, services.length);
Arrays.sort(infoArr, new PluginAndDataServiceComparator());
for (InfoIf info : infoArr) {
mTableModel.addRow(new Object[]{(info instanceof PluginProxy) ? ((PluginProxy)info).isActivated() : true, info});
}