-
Notifications
You must be signed in to change notification settings - Fork 0
/
Producto.java
80 lines (61 loc) · 1.63 KB
/
Producto.java
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
package CRUD;
/**
* Write a description of class Producto here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Producto
{
// instance variables - replace the example below with your own
int codigo; // Código del producto, se utiliza para buscar
String nombre; // Nombre un texto
int stock; // existencia actuales
int stock_min; // Número mínimo de existencias recomedadas
float precio; // Precio
/**
* Constructor for objects of class Producto
*/
public Producto()
{
}
public Producto ( int codigo, String nombre){
this.codigo = codigo;
this.nombre = nombre;
}
public String getNombre(){
return nombre;
}
public void setNombre( String valor){
nombre = valor;
}
public int getCodigo (){
return codigo;
}
public void setCodigo ( int valor){
codigo = valor;
}
@Override
public String toString(){
//return codigo +":"+ nombre +": Existencias: "+ stock + " : Precio: "+precio;
return String.format("| %5d | %-20.20s | %5d | min: %5d | %10.2f |",codigo,nombre,stock,stock_min,precio);
}
public int getStock(){
return stock;
}
public void setStock( int valor ){
stock = valor;
}
public int getStock_min(){
return stock_min;
}
public void setStock_min( int valor ){
stock_min = valor;
}
public float getPrecio(){
return precio;
}
public void setPrecio( float valor ){
precio = valor;
}
}