A C M N P

A

Actor - class Actor.
Simple Actor class.
Actor(String) - Constructor for class Actor
Constructor for actor class
actors - Variable in class Payroll
An array contain the managed actors
addActor(Actor) - Method in class Payroll
Adds an actor to the payroll.

C

calculatePay() - Method in class Actor
Calculates and returns the weekly pay for the actor
calculateTotalPay() - Method in class Payroll
Caculates the weekly pay for all of the actors

M

main(String[]) - Static method in class Payroll
A test program for the Payroll Class
MAXACTOR - Static variable in class Payroll
The maximum allowable actors that can be managed
myName - Variable in class Actor
The name of the actor

N

nActors - Variable in class Payroll
The number of actors currently being managed
nPerformances - Variable in class Actor
The number of perfomances worked

P

PAYRATE - Static variable in class Actor
The basic rate per perfomance.
Payroll - class Payroll.
Payroll class.
Payroll() - Constructor for class Payroll
Default constructor for the Payroll class
perform(int) - Method in class Actor
Sets the number of performances for the week

A C M N P