Examples of YoutubeLinkService


Examples of de.forsthaus.backend.service.YoutubeLinkService

   * Reads the data.
   */
  private void doReadData() {

    // select a random song from the table by first starting
    YoutubeLinkService service = (YoutubeLinkService) SpringUtil.getBean("youtubeLinkService");

    YoutubeLink youtubeLink = service.getRandomYoutubeLink();

    if (youtubeLink != null) {
      // set the title
      youTubePanel.setTooltiptext(youtubeLink.getInterpret() + "\n" + " - " + youtubeLink.getTitle() + " - ");
      // clear all old stuff
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.