Back to project page RoboDroid.
The source code is released under:
Apache License
If you think the Android project RoboDroid 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 ch.quantasy.tinkerforge.tinker.agent.definition; import ch.quantasy.tinkerforge.tinker.application.definition.Application; public interface Agent<E extends Application<E>> { public void addApplication(E application); public void removeApplication(E application); }