I am new at GWT and I have an application which has the following class:
package evaluation.system.shared;
import java.io.Serializable;
import com.google.gwt.user.client.rpc.IsSerializable;
public class Evaluation implements Serializable, IsSerializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private String evaluatorRID;
private String fName;
private String lName;
private double score;
public Evaluation() {
}
public String getEvaluatorRID() {
return evaluatorRID;
}
public void setEvaluatorRID(String evaluateeRID) {
this.evaluatorRID = evaluateeRID;
}
public String getfName() {
return fName;
}
public void setfName(String fName) {
this.fName = fName;
}
public String getlName() {
return lName;
}
public void setlName(String lName) {
this.lName = lName;
}
public double getScore() {
return score;
}
public void setScore(double score) {
this.score = score;
}
public Evaluation(String evaluatorRID, String fName, String lName,
double score) {
this.evaluatorRID = evaluatorRID;
this.fName = fName;
this.lName = lName;
this.score = score;
}
}
and each time I run the application the get the following error:
[ERROR] [evaluationsystem] Line 10: No source code is available for type evaluation.system.shared.Evaluation; did you forget to inherit a required module?
And as you can see line 10 is the beginning of the class.
Your help is appreciated!