/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package andmevahetus2; import javax.swing.JPanel; /** * * @author Opetaja */ public class GraafilineKuvaja extends JPanel implements ArvuKuvaja{ int kogus; @Override public void muudaArv(int uusArv) { kogus=uusArv; repaint(); } }