Back to project page Team7-301Project.
The source code is released under:
Apache License
If you think the Android project Team7-301Project 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 ca.ualberta.cs.models; // www .j a v a 2 s. c o m import java.util.ArrayList; /** * Deprecated class, don't use. */ public class JsonDriver { public boolean setRemote(ArrayList<ForumEntry> fel){ return false; } public boolean setReomteBlyd(int x, ForumEntry fe){ return false; } public boolean appendToRemote(ForumEntry fe){ return false; } public ArrayList<ForumEntry> getRemote(String a, String b, String c){ ArrayList<ForumEntry> fel=null; return fel; } public ForumEntry getRemoteBlyd(int x){ ForumEntry fe=null; return fe; } }