Package net.pms.external.xbmc.info

Examples of net.pms.external.xbmc.info.SongInfo


      disconnect(st, rs);
    }
  }
 
  private SongInfo populateSongFromSongViewRS(ResultSet rs) throws SQLException {
    SongInfo info = new SongInfo();
    info.setSongId(rs.getInt("idSong"));
    info.setFile(new File(rs.getString("strPath") + rs.getString("strFileName")));
    info.setGenre(rs.getString("strGenre"));
    info.setTitle(rs.getString("strTitle"));
    return info;
  }
View Full Code Here

TOP

Related Classes of net.pms.external.xbmc.info.SongInfo

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.