Ejemplo n.º 1
0
 /**
  * Get the List of Videos from Video Service.
  *
  * @return the List of Videos from Server or null if there is failure in getting the Videos.
  */
 public List<Video> getVideoList() {
   try {
     return (ArrayList<Video>) mVideoServiceProxy.getVideoList();
   } catch (Exception e) {
     return null;
   }
 }