Package com.opengamma.provider.livedata

Examples of com.opengamma.provider.livedata.LiveDataMetaDataProvider.metaData()


      ComponentInfo infoProvider = repo.findInfo(LiveDataMetaDataProvider.class, info.getClassifier());
      if (infoProvider == null) {
        throw new OpenGammaRuntimeException("Unable to find matching LiveDataMetaDataProvider: " + info);
      }
      LiveDataMetaDataProvider provider = (LiveDataMetaDataProvider) repo.getInstance(infoProvider);
      LiveDataMetaData metaData = provider.metaData();
      schemes.addAll(metaData.getSupportedSchemes());
      buf.appendSeparator(", ").append(metaData.getDescription());
    }
    return new LiveDataMetaData(ImmutableList.copyOf(schemes), LiveDataServerTypes.STANDARD, buf.toString());
  }
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.