Create a new java project called usernamepart2 in netbeans

Assignment Help Software Engineering
Reference no: EM132619048

CSC72002 Object Oriented Programming - Southern Cross University

Specifications

Your task is to complete various exercises in NetBeans, using the Java language, and to submit these via the MySCU link created for this purpose.

Marking criteria includes:
• Use of correct coding style, including the use of comments;
• Accuracy of coding;
• Use of suitable coding structures;
• Correct submission and naming conventions of assessment items as required.

Getting Help
This assignment is to be completed individually. It is the opportunity to gain an understanding of the concepts of object-oriented programming and coding syntax. It is important that you master these concepts yourself. You are permitted to work from the examples in the study guide or textbook, but you must acknowledge assistance from other textbooks or classmates. In particular, you must not use online material or help from others, as this would prevent you from mastering these concepts.

Part 1 - Classes and objects
Create a new Java project called usernamePart1 in NetBeans. In my case, the project would be called pdarcyPart1. Select the option to create a main method.
Create a new class called ArtObject. In the Art Object class, write the code for:
• Instance variables that store the art object's title, artist, year created, and description.
• A default constructor, and a second constructor that initialises all the instance variables.
• Accessor (getters) and mutator (setters) methods for all instance variables.
• A method called printDetails that prints the ArtObject details, e.g. "The Art Object details are:"
followed by all instance variables. The output must be formatted for readability.

In the main method, write the code to:
• Create 2 art objects, one using the default constructor, the other using the constructor that initialises all the instance variables for the art object.
• Demonstrate the use of one accessor method and one mutator method for one of the art objects you created.
• Print the art object's details using the printDetails method for one of the art objects you created.

Part 2 - Inheritance, collections and polymorphism
Create a new Java project called usernamePart2 in NetBeans. Select the option to create a main method.
Create a new class called Sculpture. Create a second class called ArtObject. Copy the code from the ArtObject class you created in Part 1 into the new ArtObject class.
Modify the new Sculpture class so that it extends ArtObject class (ArtObject is the superclass, Sculpture is the subclass).
In the Sculpture class, write the code for:
• The instance variables that store the height, and weight.
• Accessor and mutator methods for the 2 instance variables.
• A default constructor, and a second constructor that initialises all the instance variables in the Sculpture and the ArtObject classes using the super keyword.
• The ArtObject class has a method called printDetails that prints the ArtObject details. Override the printDetails method in the Sculpture class and print all of the sculpture's details. The printDetails method in the Sculpture class must use the super keyword to call the printDetails method in the ArtObject class.
• The Sculpture class must also demonstrate the use of overloaded methods.

In the main method, write the code to:
• Declare an ArrayList with a type parameter of Sculpture.
• Add at least 2 sculptures to the ArrayList.

• Use an Iterator (java.util.Iterator) to loop through the sculptures in the ArrayList and print out some of their details. Please note that use of any other kind of loop will not receive any marks.
• Check if the ArrayList contains a particular sculpture.
• Get a sculpture from the ArrayList.
• Remove a sculpture from the ArrayList.
• Print the size of the ArrayList.
• Clear the ArrayList.
Please note that collections are covered in Topic 3 and 4. You may need to wait until we have covered these topics to implement your ArrayList.

Polymorphism
In the class that contains the main method, create a second method that takes an art object's as a parameter and write the code to print out the art object's artist using one of the ArtObject's accessor methods. Then create an object of type Sculpture and an object of type ArtObject in the main method and use the method you have just created to demonstrate polymorphism.

Part 3 - Abstract classes
Create a new Java project called usernamePart3 in NetBeans. Select the option to create a main method.
Create a new class called Sculpture. Create a second new class called ArtObject. Rewrite your code from Part2 so that:
• The ArtObject class is abstract
• Sculpture extends ArtObject
• The ArtObject class contains at least one abstract method
All methods, constructors and instance variables that were in the Sculpture and ArtObject classes in part 2 must be included in part 3. You need to rewrite the Sculpture and ArtObject classes from part 2 so that ArtObject is abstract and there are multiple ways to create a sculpture.
Check your code works by creating a new sculpture in your main method.

Part 4 - Interfaces
Create a new Java project called usernamePart4 in NetBeans. Select the option to create a main method.
Create a new class called Sculpture. Create a new interface called ArtObject. Rewrite your code from Part 2 so that:
• ArtObject is an interface
• Sculpture implements ArtObject
• The ArtObject interface contains at least one abstract methods

All methods, constructors and instance variables that were in the Sculpture and ArtObject classes in part 2 must be included in part 4. You need to rewrite the Sculpture and ArtObject classes from part 2 so that ArtObject is an interface and there are multiple ways to create a sculpture.
In the main method of your project, write the code to:
• Declare a Stack with a type parameter of Sculpture
• Add at least 3 sculptures to the Stack
• Demonstrate the use of:
o peek()
o pop()
o empty()

Part 5 - UML
Create a word document called usernamePart5. Draw 2 UML diagrams to show the inheritance relationship for the Art Object and Sculpture in part 3 and part 4. Make sure that each diagram has a heading and the header of the word document contains your name and student ID.

Attachment:- Object Oriented Programming.rar

Reference no: EM132619048

Questions Cloud

How should the road system recoverable amount be determined : The machinery's value in use has been assessed at $4,500,000, How should the road system's recoverable amount be determined?
Discuss about the structure of an argument : Before drafting your initial post, take time to reflect on the structure of a successful argument. Think about the structure of an argument.
Different characteristics associated with effective leaders : Consider the definitions of leadership and different characteristics associated with effective leaders.
Prepare the adjusting entries necessary at year end december : Prepare the adjusting entries necessary at year end, December 31, Year 4 related to the above transactions. Round to the nearest dollar.
Create a new java project called usernamepart2 in netbeans : Create a new Java project called usernamePart2 in NetBeans. Select the option to create a main method - Create a new Java project called usernamePart3
Emphasis on relationships is overrated : One of your managers hears you have just completed your MBA. He looks at you and smirks and says, "All this emphasis on relationships is overrated.
Leaders-too and need support : Read the article, "Leaders, Too, Need Support." How do you see yourself in the role of supportive follower?
What the tax implication are for each stock sale alternative : Two years ago, Micro Corporation granted Alisa, their General Manager, What the tax implications are for each stock sale alternative.
How do create journal entry necessary to record transaction : 10,000 issued, 10,000 outstanding 350,000, Prepare the journal entries necessary to record the transactions. Show the date for each journal entry.

Reviews

Write a Review

Software Engineering Questions & Answers

  Describe the 7 step sdlc

Describe the 7 Step SDLC and Describe the 4 Step SDLC

  Iterative development life cycle

Question: How can we avoid analysis paralysis with an iterative development life cycle approach?

  Describe the events or tasks that would occur in each step

Consider a different SDLC Model (4 step or 12 step). Describe the events/tasks that would occur in each step if your company were to use this SDLC model instead. - 3 pages.

  Business and management scenario assignment

Design and document appropriate ETL processes that populate your dimensional model database.

  Create flowchart to accept length of base of triangle

Create a flowchart that will accept the length of the base and height of a triangle and print the area. Area of a triangle is : area = 1/2b*h ; where b = base and h = height.

  Agile and waterfall models of managing a project

Compare and contrast agile and Waterfall models of managing a project in the context of building an e-Commerce Website. Include diagrams or tables through the use of graphical tools in Microsoft Word or Visio, or an open source alternative such as..

  Compute the crc code word for the information word

Using CRC polynomial 1101 compute the CRC code word for the information word 01001101. Check the Division performed at the receiver.

  Analyze itil service management guidelines and principles

Explain the auditing tasks that must be performed in order to achieve level 3. Analyze the ITIL service management guidelines and principles.

  Prepare software requirements specification

Prepare Software Requirements Specification for FACEBOOK FOR ANDROID - describe the external behavior of the application or subsystem identified.

  Explain teaching hypervisor design and implementation

Teaching Hypervisor Design, Implementation, and Control to Undergraduate Computer Science and Computer Engineering Students

  You have been hired as the cio of a large multinational

you have been hired as the cio of a large multinational internet advertising company. the president of the company is

  Develop components of the quality assurance

Develop components of the Quality Assurance documents - developing Quality Assurance documents including the Quality Plan, Test Plans and Test Cases

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd