Back to project page spotastop.
The source code is released under:
MIT License
If you think the Android project spotastop 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 requests; //w ww .ja va2 s . c o m import resources.Resource; public class Unlink extends Link { public Unlink(Resource master, Resource slave, String linkProperty) { super(master, slave, linkProperty); this.operation="unlink"; } }