/** * Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.financial.provider.description.interestrate; import com.opengamma.analytics.financial.model.option.parameters.BlackFlatSwaptionParameters; /** * Interface for pricing swaptions using the Black method. */ public interface BlackSwaptionFlatProviderInterface extends ParameterProviderInterface { /** * Create a new copy of the provider * @return The bundle */ @Override BlackSwaptionFlatProviderInterface copy(); /** * Returns the Black parameters. * @return The parameters */ BlackFlatSwaptionParameters getBlackParameters(); }