MusicUtil.java :  » UnTagged » jainjukebox » com » pkj » android » jainjukebox » util » Android Open Source

Android Open Source » UnTagged » jainjukebox 
jainjukebox » com » pkj » android » jainjukebox » util » MusicUtil.java
package com.pkj.android.jainjukebox.util;

import android.util.Log;

public class MusicUtil {

  private MusicUtil(){
  }

  public static int debug(String tag, String methodName,String message){
    return Log.d(tag, methodName+":"+message);
  }
  
  
  public static int debug(String tag, String msg){
    return Log.d(tag, msg);
  }

  public static int fatal(String tag, String methodName,String message){
    return Log.e(tag, methodName+":"+message);
  }
  
  
  public static int fatal(String tag, String msg){
    return Log.e(tag, msg);
  }
  
  
  public static String getSongPath(long songId){
    return "";
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.