build method

ManageBuyOfferOperation build ()

Builds a ManageBuyOfferOperation.

Implementation

ManageBuyOfferOperation build() {
  ManageBuyOfferOperation operation = new ManageBuyOfferOperation(
      _selling, _buying, _amount, _price, _offerId);
  if (_mSourceAccount != null) {
    operation.sourceAccount = _mSourceAccount;
  }
  return operation;
}