Created
February 3, 2017 11:00
-
-
Save alfianyusufabdullah/0c2819cc53a189dea62b5c48b942a072 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jonesrandom.tutoriallistview; | |
public class ModelDaerah { | |
String Nama; | |
String Pemerintahan; | |
int Logo; | |
public ModelDaerah(String nama, String pemerintahan, int logo) { | |
Nama = nama; | |
Pemerintahan = pemerintahan; | |
Logo = logo; | |
} | |
public String getNama() { | |
return Nama; | |
} | |
public String getPemerintahan() { | |
return Pemerintahan; | |
} | |
public int getLogo() { | |
return Logo; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment