Back to project page android-uds.
The source code is released under:
MIT License
If you think the Android project android-uds 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.imazlwifu.uds.model; //from w w w. j ava 2s .co m import java.util.Map; public interface Monitorable { public String getName(); /** * label, value * e.g. "Battery Level", 94.0 * @return */ public Map<String, Float> values(); /** * e.g. register receiver/listener and read intent extras<br /> * see <code>Battery</code> */ public void updateData(); boolean registerListener(); void unregisterListener(); }