DrawerListItem.java 365 B

123456789101112131415161718
  1. package de.tudarmstadt.informatik.hostage.ui.model;
  2. import android.widget.ImageView;
  3. import android.widget.TextView;
  4. /**
  5. * @author Alexander Brakowski
  6. * @created 13.01.14 16:37
  7. */
  8. public class DrawerListItem {
  9. public int icon;
  10. public int text;
  11. public DrawerListItem(int text, int icon){
  12. this.text = text;
  13. this.icon = icon;
  14. }
  15. }