public abstract class Mat { protected int matId; public Mat(int id) { matId = id; } public int hentId() { return matId; } }