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