/* Soot - a J*va Optimization Framework
* Copyright (C) 2004 Jennifer Lhotak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
package ca.mcgill.sable.soot.cfg.editParts;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import org.eclipse.draw2d.IFigure;
import org.eclipse.gef.editparts.AbstractGraphicalEditPart;
import ca.mcgill.sable.soot.cfg.model.*;
import ca.mcgill.sable.soot.cfg.figures.*;
import java.util.*;
import ca.mcgill.sable.soot.*;
import org.eclipse.swt.graphics.*;
public class NodeDataEditPart
extends AbstractGraphicalEditPart
implements PropertyChangeListener {
public NodeDataEditPart() {
super();
}
/* (non-Javadoc)
* @see org.eclipse.gef.editparts.AbstractGraphicalEditPart#createFigure()
*/
protected IFigure createFigure() {
return new CFGNodeDataFigure();
}
/* (non-Javadoc)
* @see org.eclipse.gef.editparts.AbstractEditPart#createEditPolicies()
*/
protected void createEditPolicies() {
}
/* (non-Javadoc)
* @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent)
*/
public void propertyChange(PropertyChangeEvent evt) {
if (evt.getPropertyName().equals(CFGElement.TEXT)){
((CFGNodeDataFigure)getFigure()).setData((ArrayList)evt.getNewValue());
((CFGNodeDataFigure)getFigure()).updateFigure();
((CFGNodeEditPart)getParent()).updateSize(getFigure().getBounds().width, getFigure().getBounds().height);
}
else if (evt.getPropertyName().equals(CFGElement.HEAD)){
((CFGNodeDataFigure)getFigure()).getRect().setBackgroundColor(SootPlugin.getDefault().getColorManager().getColor(new RGB(0,45,200)));
}
else if (evt.getPropertyName().equals(CFGElement.TAIL)){
((CFGNodeDataFigure)getFigure()).getRect().setBackgroundColor(SootPlugin.getDefault().getColorManager().getColor(new RGB(0,200,45)));
}
}
/**
* @return
*/
public CFGNodeData getNodeData() {
return (CFGNodeData)getModel();
}
public void activate(){
super.activate();
getNodeData().addPropertyChangeListener(this);
}
public void deactivate(){
super.deactivate();
getNodeData().removePropertyChangeListener(this);
}
public void markStop(){
ArrayList list = getNodeData().getText();
((CFGNodeDataFigure)getFigure()).addStopIcon();
// send event marking this unit
soot.toolkits.graph.interaction.InteractionHandler.v().addToStopUnitList(((CFGNodeDataFigure)getFigure()).getUnit());
}
public void unMarkStop(){
((CFGNodeDataFigure)getFigure()).removeStopIcon();
soot.toolkits.graph.interaction.InteractionHandler.v().removeFromStopUnitList(((CFGNodeDataFigure)getFigure()).getUnit());
}
public void resetColors(){
removeIndicator();
}
public void addIndicator(){
((CFGNodeDataFigure)getFigure()).addIndicator();
}
public void removeIndicator(){
((CFGNodeDataFigure)getFigure()).removeIndicator();
}
}