Back to project page Spidermine.
The source code is released under:
Copyright ? 2014 PEMapModder This software is open-source and everyone is welcome to share redistributions or modifications, as long as it is clearly specified that this project's original source is ...
If you think the Android project Spidermine 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 pemapmodder.spidermine.managers; /*from w ww. j a v a 2 s . co m*/ import pemapmodder.spidermine.SpiderServer; import pemapmodder.spidermine.client.Client; public class ClientManager implements Manager<Client,String>{ public SpiderServer server; public ClientManager(SpiderServer server) { this.server=server; } @Override public Client get(String name) { // TODO Auto-generated method stub return null; } @Override public boolean add(Client managee) { // TODO Auto-generated method stub return false; } @Override public boolean remove(Client managee) { // TODO Auto-generated method stub return false; } }