Thread: Coding in Bluej
View Single Post
Old
  (#8)
Judas is Offline
Senior Member
 
Posts: 8,792
Join Date: Apr 2002
Location: Hans-AlbinVonReitzenstein
 Send a message via ICQ to Judas Send a message via AIM to Judas Send a message via MSN to Judas  
Default 09-16-2004, 09:37 PM

mutator methods change values. when i learned it methods didnt have those gay names ... not sure why they are necessary.

getSomething() <- access

setSomething() <- mutate

so all its asking you to do is to redefine that method so that you can set refnumber to whatever you want ( a string in this case ) in other methods , classes, and the main method.

not sure what all the variables are in the class but

public void setRefNumber (String ref)
{
refnumber = ref;
}

public String getRefNumber()
{
return refNumber;
}
  
Reply With Quote