Sorry, I'm sure this is some rookie istake I'm making but I have a MVC pattern package which keeps returning this errors to me:
======================================
hrms.java:22: error: cannot find symbol
hrmsModel HRMSModel = new hrmsModel();
^
symbol: class hrmsModel
location: class HRMS
hrms.java:22: error: cannot find symbol
hrmsModel HRMSModel = new hrmsModel();
^
symbol: class hrmsModel
location: class HRMS
hrms.java:24: error: cannot find symbol
hrmsView view = new hrmsView(HRMSModel);
^
symbol: class hrmsView
location: class HRMS
hrms.java:24: error: cannot find symbol
hrmsView view = new hrmsView(HRMSModel);
^
symbol: class hrmsView
location: class HRMS
4 errors
=======================================
Would really appreciate if you could tell me what I was doing wrongly here...Thanks in advance! I've added the code for the main package of my class hrms MVC gui below, for your reference.