public void editJbsObject() {
//Create the correct edit-form according to the type of contact:
if (this.getSelectedJbsBaseObject() instanceof HierarchyCustomer)
setFmEdit(new FmHierarchyCustomerEdit());
else if (this.getSelectedJbsBaseObject() instanceof Customer)
setFmEdit(new FmCustomerEdit());
else if (this.getSelectedJbsBaseObject() instanceof Employee)
setFmEdit(new FmEmployeeEdit());
else if (this.getSelectedJbsBaseObject() instanceof Supplier)
setFmEdit(new FmSupplierEdit());
else if (this.getSelectedJbsBaseObject() instanceof Contact) {