/*
* Wilos Is a cLever process Orchestration Software - http://www.wilos-project.org
* Copyright (C) 2006-2007 Paul Sabatier University, IUP ISI (Toulouse, France) <massie@irit.fr>
*
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU
* General Public License as published by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program; if not,
* write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package wilos.presentation.web.tree;
import java.util.HashMap;
import javax.swing.tree.DefaultMutableTreeNode;
import wilos.model.misc.concreterole.ConcreteRoleDescriptor;
public class ConcreteRoleDescriptorNode extends DefaultMutableTreeNode {
private static final long serialVersionUID = -3831221193711582741L;
/**
* Creates a node to represent a Concrete Role Descriptor
* @param _concreteRoleDescriptor the concrete role descriptor being represented
* @param _treeMap the HashMap in which the concrete role descriptor and its id will be stored (allows to acces the object easily when clicked on in the tree view)
*/
public ConcreteRoleDescriptorNode(
ConcreteRoleDescriptor _concreteRoleDescriptor,
HashMap<String, Object> _treeMap) {
super();
WilosObjectNode iceUserObject = new WilosObjectNode(this);
this.setUserObject(iceUserObject);
iceUserObject.setText(_concreteRoleDescriptor.getConcreteName());
iceUserObject.setLeaf(true);
// manage icon.
if (_concreteRoleDescriptor.getParticipant() == null)
iceUserObject.setLeafIcon("images/tree/icon_role_free.gif");
else
iceUserObject.setLeafIcon("images/tree/icon_role_busy.gif");
// node information
iceUserObject.setId(_concreteRoleDescriptor.getId());
iceUserObject.setPageId(WilosObjectNode.CONCRETEROLENODE);
// add the concreteRoleDescriptor object with his id in the treeMap
_treeMap.put(iceUserObject.getId(), _concreteRoleDescriptor);
}
}
|