Back to project page android-plotter.
The source code is released under:
Apache License
If you think the Android project android-plotter 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 org.solovyev.android.plotter; /*ww w . ja v a 2 s . c o m*/ import android.os.Looper; import javax.annotation.Nonnull; public final class Plot { private Plot() { throw new AssertionError(); } @Nonnull public static String getTag() { return "Plot"; } @Nonnull public static String getTag(@Nonnull String tag) { return getTag() + "/" + tag; } @Nonnull public static Plotter newPlotter() { return new DefaultPlotter(); } static boolean isMainThread() { return Looper.getMainLooper() == Looper.myLooper(); } }