decide which devices you would like to store in the list. (e.g. game consoles, radios, cameras, laptops, etc.) create a new java project 1410_doccomments_review and add a new package called doccomments.create a class that represents the device you chose. here are some requirements your class needs to fulfill: it needs to have at least three attributes you are keeping track of (dimension, resolution, etc.) it needs to have two additional fields o a unique id that cannot be changed once created (like a primary key in a database) o a static count that is used to initialize the id with a unique number Notice: At this point, we have a total of at least 5 attributes It needs a parameterized constructor. It allows the user to provide values for all the attributes you are keeping track of but not for the id nor for the count. The constructor creates a unique seven-digit id for each device based on the static field count. Such an id can be obtained by adding the incremented count to a seven-digit seed value. E.g. 1234567 + count++; In this example, the smallest id would be 1234567) It needs a getter for each of the fields except for the static count. The count is for internal use only and should remain hidden from the user. It needs to override the method toString. The returned string should include the id and the values of the fields it keeps track of. The static count should not be included. However, static count should not be included. However, there should be labels whenever the value itself is not self-explanatory.