import java.util.HashSet;
import java.util.Set;
+import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.resource.ResourceLocator;
import org.eclipse.swt.widgets.Display;
import org.simantics.db.Resource;
public void doInsert(PositionType position) {
try {
+ if (position == PositionType.SPLIT && length != null && length > component.getControlPoint().getLength()) {
+ MessageDialog.openError(panel.getComponent().getShell(), "Error", "There is no room for a component of length " + length * lengthFactor + " units");
+ return;
+ }
+
InsertInstruction inst = new InsertInstruction();
inst.typeUri = toAdd.getUri();
inst.name = name;