public boolean pasteQualifier(ModelQualifier source)
{
// A single node must be selected in order to have a paste target.
if (workspaceView.selectionCount() == 1)
{
FigureEnumeration fe = workspaceView.selectionElements();
if (fe.hasMoreElements())
{
Figure selection = fe.nextFigure();
if (selection instanceof PlaceholderNodeFigure)
{
// Get the node figure to add the sockets to
PlaceholderNodeFigure nodeFigure = (PlaceholderNodeFigure) selection;
nodeFigure.assignPlaceholderReference(source.toString());