|| actor instanceof ListenFork
|| actor instanceof ListenClock
|| actor instanceof ListenSink
|| actor instanceof ListenFeedBackDelay;
BasicFigure f;
if (isEllipse) {
f = new BasicEllipse(0, 0, _size, _size);
f.setFillPaint(Color.blue);
} else {
f = new BasicRectangle(0, 0, _size, _size);
f.setFillPaint(Color.pink);
}
String label = actor.getName();
LabelWrapper w = new LabelWrapper(f, label);
w.setAnchor(SwingConstants.SOUTH);