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

ListEntry.java (205B)


      1 package de.mtbnews.android.tapatalk.wrapper;
      2 
      3 import java.util.Date;
      4 
      5 public interface ListEntry
      6 {
      7 
      8 	String getTitle();
      9 
     10 	String getContent();
     11 
     12 	Date getDate();
     13 
     14 	String getName();
     15 
     16 	boolean isUnread();
     17 }