Hi I'm doing some code and the use of the Curley braces is confusing me.
public class a
{
private String b;
public a(String b)
{
}
public String getb()
{
return b;
}
public void setb(String b)
{
this.b = b;
}
//but im getting an error in eclipse to
//add } to complete the class body??
Am I on the right track with the braces?
Thanks in advance.