Back to project page m2e-android.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project m2e-android 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 me.gladwell.eclipse.m2e.android; /* ww w . j av a 2 s .c om*/ import org.eclipse.core.runtime.ILog; import org.eclipse.core.runtime.Status; public class Log { private final static ILog log = AndroidMavenPlugin.getDefault().getLog(); private Log() {} public static void warn(String message) { log.log(new Status(Status.WARNING, AndroidMavenPlugin.PLUGIN_ID, message)); } }