Program that instantiates a number of actors and writers, JAVA Programming

Assignment Help:

Talent agencies like ICM, CAA and Paradigm represent writers, directors and actors (among other talent).  These agencies take in hundreds of millions of dollars a year collecting 10% from each of their clients.  We would like to get them to spend some of their money on our software tracking system that helps them organize and bill their clients.  Before we do anything, we'll have to create some base classes and derived classes.

On the other hand, if you are not so interested in stellar actors, but rather in stellar models in astrophysics, have a peek at one of the options further down.

OPTION A (Basic):  A Talent Agency System

Create a base class called Client that has the following private members:

  • String name - The name of the Client.
  • long income_this_year - how much the Client made so far this year.
  • double percent_cut - usually .10, but you can always make a deal for less if you are in demand and easy to market.
  • MIN_INCOME_VAL, MAX_INCOME_VAL, MIN_NAME_LEN, MAX_NAME_LEN - some static finals to control the values passed into mutators.

Provide the usual complete set of constructors, mutators and accessors for this class.  Also provide a Display() method that displays member data.

The industry needs different information from actors than it does from writers.  For example, the writer's age or sex usually doesn't matter, but for actors, this information is crucial.  On the other hand, special training, degrees or skills are often important when marketing a writer (law degree, technical/science degree, CIA experience) that don't really matter for actors.

Derive a class Writer from Client that has the following additional members:

  • boolean technical - true if the writer has background in technology
  • boolean government - true if the writer has background in government/politics
  • boolean international - true if the writer has a great deal of travel experience
  • String rank - one of the following: "staff writer", "story editor", "co-producer", "producer", "co-executive producer", "executive producer". There are the common ranks that determine the level that the writer is placed on a show or film. You can make this member a char or int, as long as you have a toString() or Stringize() method to get the String value from it.

Derive a class Actor from Client that has the following additional members:

  • char gender (M or F)
  • int age

Provide the usual complete set of constructors, mutators and accessors for these classes, being sure as always, to filter out illegal arguments.  Use function and constructor chaining whenever possible to eliminate code duplication.  Be sure to have at least one method, Display() in each sub-class that displays a complete report for the object, overriding the corresponding method from the base.

Create a class Agent that contains:

  • String name - the Agent's name
  • Client[] my_Clients - an array of Client references. Allocate an array of some fixed size, MAX_CLIENTS, but don't instantiate individual Clients ... we allow this array to point to the caller's Client objects.
  • int num_Clients - the current number of Clients this Agent has.
  • MAX_CLIENTS, MIN_NAME_LEN, MAX_NAME_LEN - some static finals to control the values passed into mutators.

Give the Agent class the minimal constructors plus these methods:

  • AddClient(Client client) - puts client into the Agent's list.
  • RemoveClient(Client client) - removes client by squeezing him out of the list.
  • ShowClientsShort() - Displays a list of all this Agent's Clients' names (only names).
  • ShowClientsLong() - Displays a list of all the Clients, using the Client display method.
  • double GetIncome() - Returns the dollar amount collectable from all Clients so far this year (based on the tally of the Client member data, percent_cut, and income_this_year.

Create a main program that instantiates a number of Actors and Writers, displays a few of their data to the screen, individually (not all).  Next, instantiate one Agent, and place some of the Actors and Writers into the Agent's list.  Print out the Agent's Clients' names demonstrating both ShowClients---() methods, and show how much money the Agent is going to get this year.


Related Discussions:- Program that instantiates a number of actors and writers

Write down the class electricitysource, Question : (a) Explain the con...

Question : (a) Explain the concept of polymorphism when used in programs using suitable examples of your own. (b) (i) Distinguish between abstract methods and non-abstrac

Logical operators, Logical Operators Operator ...

Logical Operators Operator Functionality E x ample/ Explanation     && Looks at 2 expressions & returns a

Describe inner classes in java, Describe Inner Classes in java? An inne...

Describe Inner Classes in java? An inner class is a class whose body is described inside another class, referred to as the top-level class. For instance: public class Queue {

Difference b/w software platform and java platform, Java platform is a soft...

Java platform is a software-only platform independent, which runs on top of other hardware-based platforms like WINDOWS, UNIX, NT etc.   The Java platform has 2 main com

For statement in javascript, A for loop repeats until a specified condition...

A for loop repeats until a specified condition evaluates to false. For for loop the JavaScript is similar to the Java and C for loops. A for statement looks as:  for ([initial-

Project, Prog. Concepts - Project The objective is to implement a menu - ba...

Prog. Concepts - Project The objective is to implement a menu - based system for Bank Accounts in order to simulate a very simple banking system. Many structures have to be declare

Explain the uses of JVM verifier, Explain the uses of JVM verifier The ...

Explain the uses of JVM verifier The JVM "verifier" checks the code when it's loaded to verify that it has the correct structure --that it does not use an uninitialized pointer

#tSutherland cohen line clipping algorithm, how do you write the code so th...

how do you write the code so the line will be clipped

For what purposes ftp is used in networks, For what purposes FTP is used in...

For what purposes FTP is used in networks? FTP is known as file transfer protocol it is basically used to download or upload files / data to a remote computer.

Write Your Message!

Captcha
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