Changes

Jump to: navigation, search
8. Implement Edit Student Option
=== 8. Implement Edit Student Option ===
8.1. In order to Implement theEdit Student menu option, firs we have to make sure that our Student class has all setters and getters we need, so we have to add the following methods to the <code>Student.Java<code/>: 
<pre>
 
public String getFirstname(){
return this.firstName;
}
public String getLastName(){
return this.lastName;
}
public void setEmail(String email){
this.email = email;
}
public void setFirstName( String firstName){
this.firstName=firstName;
}
public void setLastName(String lastName){
this.lastName = lastName;
}
</pre>
1
edit

Navigation menu