Facebook
From Wet Mosquito, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 267
  1. package com.company;
  2.  
  3. /**
  4.  * Created by Mazek on 2016-06-10.
  5.  */
  6. public class Pies extends Zwierze {
  7.  
  8.     public Pies(String mImie) {
  9.         super(mImie);
  10.     }
  11.  
  12.     public void szczekaj(){
  13.         System.out.println("Hau Hau");
  14.     }
  15.  
  16.     public void dajLape(){
  17.         System.out.println(" podał łape");
  18.     }
  19. }