Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package cl.boti;
- public class Botella {
- private String tipoBotella;
- private String marca;
- public Botella(String tipoBotella, String marca) {
- this.tipoBotella = tipoBotella;
- this.marca = marca;
- }
- public Botella() {
- }
- public String getTipoBotella() {
- return tipoBotella;
- }
- public void setTipoBotella(String tipoBotella) {
- this.tipoBotella = tipoBotella;
- }
- public String getMarca() {
- return marca;
- }
- public void setMarca(String marca) {
- this.marca = marca;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement