C I J R S T

C

createLabels(int, int) - Method in class JScale
this takes in interger value and it creates the labels based on this value using a hashtable with the appropiate incremented values and then prints them on the scale accordingly

I

init(int) - Method in class JScale
method init takes the decimal place specified and sets the max and min appropiately

J

JScale - class JScale.
The JScale class is sub-class of JSlider it takes it a max, min for the range of the scale and a decimal value for the level of accuracy you want in the output.
JScale(int, int, int) - Constructor for class JScale
constructor of the JScale class it takes as parameters a minimum, maximum, and how many decimal you want it to display

R

returnValue() - Method in class JScale
this return the current value for the scale as a float depending on how many decimal you specified in the parameter when creating the JScale

S

setMajorTick(int) - Method in class JScale
this takes in an interger value and for the major tick spacing and creates it on the JScale it also print out the tick marks on the JScale
setMinorTick(int) - Method in class JScale
this takes in an integer vlaue and for the minor tick spacing and creates it on the JScale it prints the tick marks on the JScale
setVal(int) - Method in class JScale
this takes in an integer value and sets it to the JScale

T

title(String, int) - Method in class JScale
this will take in a title as a string and set it on the scale with a border around it

C I J R S T