android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/android-ibc-forum.git
Log | Files | Refs

Search.java (504B)


      1 package de.mtbnews.android.tapatalk.wrapper;
      2 
      3 import java.util.List;
      4 
      5 public class Search
      6 {
      7 
      8 	public int topicCount;
      9 	public String searchId;
     10 
     11 	private List<Topic> topics;
     12 
     13 	/**
     14 	 * @param topicCount
     15 	 * @param searchId
     16 	 * @param topics
     17 	 */
     18 	public Search(int topicCount, String searchId, List<Topic> topics)
     19 	{
     20 		super();
     21 		this.topicCount = topicCount;
     22 		this.searchId = searchId;
     23 		this.topics = topics;
     24 	}
     25 
     26 	/**
     27 	 * @return the topics
     28 	 */
     29 	public List<Topic> getTopics()
     30 	{
     31 		return topics;
     32 	}
     33 
     34 }