What are the steps to grouping related classes into packages

Posted by user2368481 on Programmers See other posts from Programmers or by user2368481
Published on 2013-11-07T08:14:00Z Indexed on 2013/11/07 10:16 UTC
Read the original article Hit count: 316

I've been googling this for some time, but what I haven't found are the clear steps needed to be taken to group related classes into packages in Java.

In my case, I have about a number of .java files that I'd like to group into 3 packages according to the MVC pattern. One package for Model classes, one package for View classes and one package for Controller classes. I've identified which belong in what package, but not sure of the next step.

© Programmers or respective owner

Related posts about java

Related posts about mvc