B D E F M N P S

B

bark() - Method in class Dog
A bark method that takes no parameters.
bark(boolean) - Method in class Dog
Overloaded bark method that takes a single boolean parameter.
bark(char) - Method in class Dog
Overloaded bark method that takes a single character parameter.
bark(byte) - Method in class Dog
Overloaded bark method that takes a single byte parameter.
bark(short) - Method in class Dog
Overloaded bark method that takes a single byte parameter.
bark(int) - Method in class Dog
Overloaded bark method that takes a single integer parameter.
bark(long) - Method in class Dog
Overloaded bark method that takes a single long parameter.
bark(float) - Method in class Dog
Overloaded bark method that takes a single float parameter.
bark(double) - Method in class Dog
Overloaded bark method that takes a single double parameter.

D

Dog - class Dog.
Exercise 4.6 from the book.
Dog() - Constructor for class Dog
The default constructor
Dog(String) - Constructor for class Dog
The constructor that gives the dog a name

E

Exercise4_1 - class Exercise4_1.
Exercise 4.1 from the book
Exercise4_1() - Constructor for class Exercise4_1
The default constructor.
Exercise4_11 - class Exercise4_11.
Exercise 4.11 from the book.
Exercise4_11() - Constructor for class Exercise4_11
Default constructor.
Exercise4_11(String) - Constructor for class Exercise4_11
Constructor that takes a single string argument.
Exercise4_2 - class Exercise4_2.
Exercise 4.2 from the book *
Exercise4_2() - Constructor for class Exercise4_2
The default constructor
Exercise4_2(String) - Constructor for class Exercise4_2
Constructor that takes a single string argument.
Exercise4_5 - class Exercise4_5.
Exercise 4.5 from the book.
Exercise4_5() - Constructor for class Exercise4_5
Default constructor

F

finalize() - Method in class Exercise4_11
The finalize method.

M

main(String[]) - Static method in class Dog
The main method that exercises all bark methods.
main(String[]) - Static method in class Exercise4_1
The main method that creates and object.
main(String[]) - Static method in class Exercise4_11
Main method that creates a lot of objects and call the garbage collector once in a while
main(String[]) - Static method in class Exercise4_2
The main method that creates new objects.
main(String[]) - Static method in class Exercise4_5
Main method that create a new object and calls the print method

N

name - Variable in class Dog
The name of the dog --- an instance variable
name - Variable in class Exercise4_11
The name

P

print() - Method in class Exercise4_5
Prints the content of the string array

S

strArray - Variable in class Exercise4_5
Instance variable which stores an array strings

B D E F M N P S