Talent agency system, 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:- Talent agency system

What is a target , A target is the class that is being advised. The class ...

A target is the class that is being advised. The class can be a third party class or your own class to which you require to add your own custom behavior. By using the concepts of A

What is javaserver faces validation model, A device for validating the data...

A device for validating the data a user inputs to a JavaServer Faces UI component.

State about the jvm, State about the JVM? JVM is the acronym which ...

State about the JVM? JVM is the acronym which stands for 'Java virtual machine'. JVM provides execution environment. JVM isn't platform independent. JVM is Java

Give an examples of java.lang.math methods, Give an Examples of java.lang.M...

Give an Examples of java.lang.Math Methods Here is an instance program in which exercises most of the routines in java.lang.Math. If your high school math is a little rusty, do

Illustrate an example to define a student class, Task - Defining a Student ...

Task - Defining a Student class The below illustration will explain how to write a class. We want to write a "Student" class which - should be able to store the below charac

Mention five applications of artificial intelligent system, Mention any fiv...

Mention any five applications of Artificial Intelligent System? 1)Medical Diagnosis 2)Robots 3) Games 4) Business intelligence 5)Image Recognition.

Explain about the dynamic behavior of core java, This language was designed...

This language was designed to adapt the changing environment and behavior. New methods and instance variables can be added to the client side without any major changes happening at

Create an applet for grid layout, Take the Student Choice GUI you created i...

Take the Student Choice GUI you created in Assignment and convert it to an applet.  Because standalone GUI applications and applets are so similar, a lot of the code should be reus

Pebble merchant, There is a pebble merchant. He sells the pebbles, that are...

There is a pebble merchant. He sells the pebbles, that are used for shining the floor. His main duty is to take the length of the room’s sides. But he sometimes mistakes doing tha

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