E G L S T W

E

equals(Temperature) - Method in class Temperature
General method: checks if objects have equal temperatures

G

getCelsiusTemperature() - Method in class Temperature
Accessor method: gets the C temperature value
getFahrenheitTemperature() - Method in class Temperature
Accessor method: gets the F temperature value
greaterThan(Temperature) - Method in class Temperature
General method: checks if temperature of current object is greater than that of other object

L

lessThan(Temperature) - Method in class Temperature
General method: checks if temperature of current object is less than that of other object

S

set(double) - Method in class Temperature
Mutator method: sets the object's temperature value with param
set(char) - Method in class Temperature
Mutator method: sets the object's scale value with param
set(double, char) - Method in class Temperature
Mutator method: sets the object's scale and temperature values with params

T

Temperature - class Temperature.
Temperature.java Class for temperature objects Ref: #7,338,3rd AHD, Fri 10 Oct 2003,11:43 PT Please report any errors or omissions in this file.
Temperature() - Constructor for class Temperature
Default Constructor: sets temperature to O and scale to 'C'
Temperature(double) - Constructor for class Temperature
Constructor: initialises temperature to parameter t
Temperature(char) - Constructor for class Temperature
Constructor: initialises scale to parameter s
Temperature(double, char) - Constructor for class Temperature
Constructor: initialises scale to parameter s and temperature to t

W

writeOutput() - Method in class Temperature
General method: writes the object's values to screen

E G L S T W