Examples of ExternalIdSearch


Examples of com.opengamma.id.ExternalIdSearch

   * @param exchangeIds  the exchange key identifiers to add, not null
   */
  public void addExchangeExternalIds(ExternalId... exchangeIds) {
    ArgumentChecker.notNull(exchangeIds, "exchangeIds");
    if (getExchangeExternalIdSearch() == null) {
      setExchangeExternalIdSearch(new ExternalIdSearch(exchangeIds));
    } else {
      getExchangeExternalIdSearch().addExternalIds(exchangeIds);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.