public TableModelUserPanels(CollaboratorLocalAbstract collaborator) throws ClipsException {
allPanels = new ArrayList<UserPanel>();
Enumeration e = UserPanel.elements();
while (e.hasMoreElements()) {
UserPanel panel = (UserPanel) e.nextElement();
allPanels.add(panel);
}
if(collaborator != null){
collabLoc = collaborator;
userPanels = collabLoc.getPanels();