Buku.java 1.28 KB
Newer Older
Benyamin De Costa committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
package org.perpustakaanku.model;



public class Buku {
	private String isbn, judul, penerbit, pengarang;
	private Integer jumlah;
	private Buku()
	{
		super();
	}
	
	public Buku(String isbn, String judul,  String penerbit, String pengarang, Integer jumlah) {
		super();
		this.isbn = isbn;
		this.judul = judul;
		this.penerbit = penerbit;
		this.pengarang = pengarang;
		this.jumlah = jumlah;
		
	}

	
	public String getIsbn() {
		return isbn;
	}

	/**
	 * @param isbn the isbn to set
	 */
	public void setIsbn(String isbn) {
		this.isbn = isbn;
	}

	/**
	 * @return the judul
	 */
	public String getJudul() {
		return judul;
	}

	/**
	 * @param judul the judul to set
	 */
	public void setJudul(String judul) {
		this.judul = judul;
	}

	/**
	 * @return the deskripsi
	 */
	public String getPenerbit() {
		return penerbit;
	}

	/**
	 * @param penerbit the penerbit to set
	 */
	public void setPenerbit(String penerbit) {
		this.penerbit = penerbit;
	}

	public String getPengarang() {
		return pengarang;
	}

	/**
	 * @param penulis the penulis to set
	 */
	public void setPenulis(String pengarang) {
		this.pengarang = pengarang;
	}
	
	public Integer getJumlah() {
		return jumlah;
	}

	/**
	 * @param banyak the banyak to set
	 */
	public void setJumlah(Integer jumlah) {
		this.jumlah = jumlah;
	}

}