Skip to content

Ssmarie14/CodingEventsJava

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Person class might hold the following fields:

id - user ID firstName (String) - user’s first name lastName (String) - user’s last name email (String) - user’s email password (String) - user’s password location (String) - user's location (city, state selection option) age (Int) - user's age

The class would need getters for all of these fields. It could have setters for all fields except id (since it shouldn’t change).

The Person class might also have the following references:

Profile - a class to gather up all of the profile information about the user List categoriesInterested - to store categories of activities the user is interested in List eventsAttending - a different list, to store the events the user has decided to attend Person would have a many-to-many relationship with Events via List eventsAttending. It would have a one-to-many relationship with ActivityCategories via List categoriesInterested.# CodingEventsJava

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 72.1%
  • HTML 27.6%
  • Other 0.3%