You are on page 1of 2

/*

* To change this template, choose Tools | Templates


* and open the template in the editor.
*/
package srednji_sloj;
/**
*
* @author servis
*/
public class Proizvod {
private int sifra;
private String naziv;
private double cena;
private String ID;
/**
* @return the sifra
*/
public int getSifra() {
return sifra;
}
/**
* @param sifra the sifra to set
*/
public void setSifra(int sifra) {
this.sifra = sifra;
}
/**
* @return the naziv
*/
public String getNaziv() {
return naziv;
}
/**
* @param naziv the naziv to set
*/
public void setNaziv(String naziv) {
this.naziv = naziv;
}
/**
* @return the cena
*/
public double getCena() {
return cena;
}
/**
* @param cena the cena to set
*/
public void setCena(double cena) {
this.cena = cena;
}
/**
* @return the ID
*/
public String getID() {
return ID;
}
/**
* @param ID the ID to set
*/
public void setID(String ID) {
this.ID = ID;
}
}

You might also like