//Nothing
}
else {
//We also have to set the selected probe's group to be the correct one.
//Find the group
ProbeGroup pg = (ProbeGroup) DesignUtils.getGroupWithType(p, ProbeGroup.GROUP_TYPE);
//Remove the current probe from the group
if (pg != null) {
pg.removeMember(p);
}
//Copy the selected probe
p.copy(selected);
//Add the copied probe to the group
if (pg != null) {
pg.addMember(p);
}
//Print the selected probe to the log
String s = "Selected: "; //$NON-NLS-1$
for (int i = 1; i <= p.getSequenceCount(); i++) {
if (i > 1) {