document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package com.adek.tutorandroid;
  2.  
  3. /**
  4.  * Created by Adek on 11/03/2018.
  5.  */
  6.  
  7. public class ModelMainMenu {
  8.  
  9.     private String judul;
  10.     private int gambar;
  11.  
  12.     public String getJudul(){
  13.         return judul;
  14.     }
  15.  
  16.     public int getGambar(){
  17.         return gambar;
  18.     }
  19.  
  20.     public ModelMainMenu(String judul, int gambar){
  21.         this.judul = judul;
  22.         this.gambar = gambar;
  23.     }
  24. }
');