package com.company; /** * Created by Mazek on 2016-06-10. */ public class Pies extends Zwierze { public Pies(String mImie) { super(mImie); } public void szczekaj(){ System.out.println("Hau Hau"); } public void dajLape(){ System.out.println(" podał łape"); } }