}
}
Vector duplicatedNameVector = new Vector();
for (int i = 0; i < cellVector.size(); i++) {
DefaultGraphCell defaultGraphCell = (DefaultGraphCell) cellVector.get(i);
Hashtable userObjectHashtable = null;
Object userObject = graphpadGraphModel.getValue(defaultGraphCell);
if (userObject instanceof JGraphpadBusinessObject) {
JGraphpadBusinessObject graphpadBusinessObject = (JGraphpadBusinessObject) userObject;
userObjectHashtable = (Hashtable) graphpadBusinessObject.getProperties();
} else
continue;
Vector incomingCellVector = new Vector();
Object[] incomingEdges =
JGraphpadGraphModel.getIncomingEdges(graphpadGraphModel, defaultGraphCell);
for (int index = 0; index < incomingEdges.length; index++) {
DefaultEdge edge = (DefaultEdge) incomingEdges[index];
Object vertex = graphpadGraphModel.getSourceVertex(graphpadGraphModel, edge);
if (CellType.isCellActionCell(vertex)) {
DefaultGraphCell cell = (DefaultGraphCell) vertex;
JGraphpadBusinessObject businessObject =
(JGraphpadBusinessObject) graphpadGraphModel.getValue(cell);
Hashtable businessProperties = (Hashtable) businessObject.getProperties();
incomingCellVector.add(businessProperties);
} else