Im new to java. how do i fix the problem with class
im just new to java. my problem is, i copy and paste a code from java.sun.com to a notepad, i save it as class.java.
the code is:
private class Bicycle {
private int cadence;
private int gear;
private int speed;
public Bicycle(int startCadence, int startSpeed, int startGear) {
gear = startGear;
cadence = startCadence;
speed = startSpeed;
}
public int getCadence() {
return cadence;
}
public void setCadence(int newValue) {
cadence = newValue;
}
public int getGear() {
return gear;
}
public void setGear(int newValue) {
gear = newValue;
}
public int getSpeed() {
return speed;
}
public void applyBrake(int decrement) {
speed -= decrement;
}
public void speedUp(int increment) {
speed += increment;
}
}
http://i73.photobucket.com/albums/i2...ia/error-1.jpg
what seems to be the problem???