/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package cache; /** * * @author Juninho Carlos */ public class Erro { private int conjunto; private int bloco; private int palavra; public Erro(int conjunto,int bloco,int palavra){ this.conjunto = conjunto; this.bloco = bloco; this.palavra = palavra; } public int getConjunto(){ return this.conjunto; } public int getBloco(){ return this.bloco; } public int getPalavra(){ return this.palavra; } @Override public String toString() { return conjunto+" "+bloco+" "+palavra; //To change body of generated methods, choose Tools | Templates. } }