/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package soidukid; /** * * @author opetaja */ public class Veesoiduk extends Soiduk{ private double minsygavus; public Veesoiduk(){} public Veesoiduk(int aasta, String omanik, double minsygavus){ super(aasta, omanik); setMinsygavus(minsygavus); } public double getMinsygavus() { return minsygavus; } public void setMinsygavus(double minsygavus) { this.minsygavus = minsygavus; } }