Created
September 18, 2018 02:29
-
-
Save malikkurosaki/56411dea41776afb438be546c32d8ca5 to your computer and use it in GitHub Desktop.
ad
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.malik.rajanepikep; | |
public class Dapat { | |
private String nama; | |
private String alamat; | |
private String gambar; | |
public Dapat(){} | |
public Dapat(String nama, String alamat,String gambar) { | |
this.nama = nama; | |
this.alamat = alamat; | |
} | |
public String getNama() { | |
return nama; | |
} | |
public void setNama(String nama) { | |
this.nama = nama; | |
} | |
public String getAlamat() { | |
return alamat; | |
} | |
public void setAlamat(String alamat) { | |
this.alamat = alamat; | |
} | |
public String getGambar() { | |
return gambar; | |
} | |
public void setGambar(String gambar) { | |
this.gambar = gambar; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment