Package org.a0z.mpd

Examples of org.a0z.mpd.MPD


   * @throws MPDServerException
   */
  private MPD getInstance() throws MPDServerException, UnknownHostException {
    if (mpdPlayer == null) {
      try {
        mpdPlayer = new MPD(PropertyHelper.getInstance().getMPDHost(), PropertyHelper.getInstance().getMPDPort());
      } catch (Exception e) {
        throw new MPDServerException("Unabled to load MPD config from settings: " + e.getMessage(), e);
      }
    }
    return mpdPlayer;
View Full Code Here

TOP

Related Classes of org.a0z.mpd.MPD

Copyright © 2018 www.massapicom. 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.