Advertisement
Nasty

Untitled

Nov 13th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. public class Pajaro {
  2.    
  3.     private int edad;
  4.     private String color;
  5.    
  6.     public void Pajaro(int edad, String color) {
  7.         this.edad = edad;
  8.         this.color = color;
  9.     }
  10.    
  11.     public void setEdad(int edad) {
  12.         this.edad = edad;
  13.     }
  14.    
  15.     public int getEdad() {
  16.         return this.edad;
  17.     }
  18.    
  19.     public void setColor(String color) {
  20.         this.color = color;
  21.     }
  22.    
  23.     public String getColor() {
  24.         return this.color;
  25.     }
  26.    
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement