A C D E G M R S T

A

Acrobat - interface Acrobat.
This interface defines the methods that a class must implement in order to be considered an Acrobat.

C

clap(int) - Method in interface Acrobat
Clap as instructed.
clap(int) - Method in class Dog
Clap as instructed.
clap(int) - Method in class Student
Clap as instructed.

D

Dog - class Dog.
One of several animal types, in this case, a canine.
Dog(String) - Constructor for class Dog
Create a new Dog with default characteristics.
Dog(String, double, double) - Constructor for class Dog
Create a new Dog, using supplied parameter values.

E

eat(double) - Method in class Dog
Eat some goodies.

G

getActionCount() - Method in interface Acrobat
Tell the caller how many things we've done so far.
getActionCount() - Method in class Dog
Tell the caller how many things we've done so far.
getActionCount() - Method in class Student
Tell the caller how many things we've done so far.
getClapCount() - Method in class Student
Tell the caller how times we've clapped so far.
getCurrentWeight() - Method in class Dog
get the current weight of this animal.
getFamilyName() - Method in class Student
Tell the caller what our family name is.
getGivenName() - Method in class Student
Tell the caller what our given name is.
getMealSize() - Method in class Dog
get the meal size defined for this animal.
getName() - Method in class Dog
get the name of this animal.
getTwirlCount() - Method in class Student
Tell the caller how times we've twirled so far.

M

main(String[]) - Static method in class Ringmaster
Create some new objects from classes that implement the Acrobat interface, then ask them to do various things for us.

R

Ringmaster - class Ringmaster.
This is the main class of a simple Java program.
Ringmaster() - Constructor for class Ringmaster
 

S

Student - class Student.
This class can be used to represent a member of the CSE 142 Acrobat community.
Student(String, String) - Constructor for class Student
Create a new Acrobat using the name information provided.

T

twirl(int) - Method in interface Acrobat
Twirl around as instructed.
twirl(int) - Method in class Dog
Twirl around as instructed.
twirl(int) - Method in class Student
Twirl around as instructed.

A C D E G M R S T