I have to do this work but i do not understand Java coding please can somebody help me with:
Step 2: A basic Website class
a) Write a basic Website class to represent the web site. The constructor for the class should be passed the name of the website which will typically be "Club 18", "Centre Parks" or "Club Silver" and which should be saved in a field. A second field hits should record the number of browsers who logged into the website and a third field salesTotal should record the amount of money taken at the checkout.
b) Write a method for the class, called memberLogin(), which allows a member to log in to the site. This method is passed a Member object as a parameter and which
i) uses the member's setLoginStatus() method to "log in" that member to the website;
ii) outputs a welcome message to a terminal window in the format
Club 18 welcomes member 6732, you are now logged in
c) Now write a memberLogout() method.
Step 3: Add a basic Holiday class and allow a member to select a holiday.
a) Write a basic Holiday class to represent a holiday. A Holiday object has three fields: refNo (a unique sequence of letters and digits), type (e.g. "beach", "touring") and price (the price of the holiday in pounds per person). The constructor for the class should be passed suitable arguments to initialise the three fields.
b) Add a selectHoliday() method to the Member class which allows a member to choose a holiday provided the user is logged into the appropriate website. This method is passed a Holiday object as a parameter. You should declare a new field holiday in the Member class in order to store the holiday selected.
c) Make the selectHoliday() method print a message to a terminal window similar to this one
Member 6732 has selected holiday ref number W1473, a touring holiday at £550 per person.