android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 228e088ad9dfbfd4d1f9c6a502026035b1d374e5
parent 424b28cbe42ae0f0eeda6eef84dbcc25a501c07a
Author: Jan Dankert <devnull@localhost>
Date:   Sun,  5 Feb 2012 00:46:26 +0100

Vergessen...  notwendig für Tapatalk-Client.

Diffstat:
src/de/mtbnews/android/tapatalk/wrapper/ListHolder.java | 33+++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+), 0 deletions(-)

diff --git a/src/de/mtbnews/android/tapatalk/wrapper/ListHolder.java b/src/de/mtbnews/android/tapatalk/wrapper/ListHolder.java @@ -0,0 +1,33 @@ +package de.mtbnews.android.tapatalk.wrapper; + +import java.util.List; + +public class ListHolder<T> +{ + private List<T> children; + public int totalCount; + + public int from; + public int to; + + /** + * @param children + * @param totalCount + * @param from + * @param to + */ + public ListHolder(List<T> children, int totalCount, int from, int to) + { + super(); + this.children= children; + this.totalCount = totalCount; + this.from = from; + this.to = to; + } + + public List<T> getChildren() + { + return children; + } + +}