android-openrat

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

FolderEntry.java (413B)


      1 package de.openrat.android.client;
      2 
      3 public class FolderEntry
      4 {
      5 	public FType type;
      6 	public String id;
      7 	public String name;
      8 	public String description;
      9 
     10 	public enum FType
     11 	{
     12 		FOLDER, PAGE, FILE, LINK, PROJECT;
     13 	}
     14 
     15 	/**
     16 	 * {@inheritDoc}
     17 	 * 
     18 	 * @see java.lang.Object#toString()
     19 	 */
     20 	@Override
     21 	public String toString()
     22 	{
     23 		return "FolderEntry [id=" + id + ", name=" + name + ", type=" + type
     24 				+ "]";
     25 	}
     26 
     27 }