Back to project page AndroidCharts.
The source code is released under:
MIT License
If you think the Android project AndroidCharts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dacer.androidcharts; /*from w w w . j a va2 s. c o m*/ import android.util.Log; /** * Created by Dacer on 10/23/13. */ public class TempLog { public static void show(String s){ Log.e("Log--->",s); } public static void show(int i){ Log.e("Log--->",String.valueOf(i)); }public static void show(float i){ Log.e("Log--->",String.valueOf(i)); } }