DrawerListItem.java 507 B

12345678910111213141516171819202122232425262728
  1. package de.tudarmstadt.informatik.hostage.ui2.model;
  2. import android.widget.ImageView;
  3. import android.widget.TextView;
  4. /**
  5. * Holds the data for an navigation item in the navigation drawer
  6. *
  7. * @author Alexander Brakowski
  8. * @created 13.01.14 16:37
  9. */
  10. public class DrawerListItem {
  11. /**
  12. * The icon of the item
  13. */
  14. public int icon;
  15. /**
  16. * The text of the item
  17. */
  18. public int text;
  19. public DrawerListItem(int text, int icon){
  20. this.text = text;
  21. this.icon = icon;
  22. }
  23. }