}
public void connectParameter(FBElement obj) throws FBRManagementException,
FBDataTypeException, XMLException {
if (!(obj instanceof FBMConnection)) {
throw new XMLException("INVALID_OBJECT");
} else {
FBMConnection cnxn = (FBMConnection) obj;
String dst[] = unpackHierName(cnxn.getDestination());
fbNamed(dst[0]).connectParameter(dst[1], cnxn.getSource());
return;