Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication27;
- /**
- *
- * @author fmi
- */
- public class Animal implements AnimalInterface{
- private boolean suckMilk = false;
- public Animal(boolean suckMilk){
- this.suckMilk = suckMilk;
- }
- public String introduceYourSelf(){
- return "I am a mummle: " + suckMilk;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement