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. ja v a 2 s . c o m /** * This class is an answer to a question in a forum entry. There can be 0 to many of these in * a forum entry. It inherits from Entry and does not add any new functionality. This class * exists for the sake of clarity. */ public class Answer extends Entry { /** * Creates a new answer. * @param post_ The answer. * @param author_ The person creating the answer. */ public Answer(String post_, String author_) { super(post_, author_); } }