Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.92 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package bukuTelepon.model;
  7.  
  8. /**
  9.  *
  10.  * @author syifa
  11.  */
  12. public class bukutelepon {
  13.     private Integer id;
  14.     private String nomer;
  15.     private String nama;
  16.     private String alamat;
  17.    
  18.     public String getAlamat(){
  19.         return alamat;
  20.     }
  21.     public void setAlamat(String alamat){
  22.         this.alamat = alamat;
  23.     }
  24.     public Integer getId(){
  25.         return id;
  26.     }
  27.     public void setId(Integer id){
  28.         this.id = id;
  29.     }
  30.     public String getNama(){
  31.         return nama;
  32.     }
  33.     public void setNama(String nama){
  34.         this.nama = nama;
  35.     }
  36.     public String getNomer(){
  37.         return nomer;
  38.     }
  39.     public void setNomer(String nomer){
  40.         this.nomer = nomer;
  41.     }
  42.    
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement