問題があります。永続的なエンティティのセルテーブル行に挿入する必要があります。Googleデベロッパーガイドでセルテーブルのすべての例を確認し、エンティティクラスなしでこれを行うために多くの検索を行いました。これは私のエンティティ(パッケージentity.commun)です:
public class Eleve implements java.io.Serializable{
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private String email;
@Persistent private String nom;
@Persistent private String prenom;
@Persistent private char sexe;
@Persistent private String adresse;
@Persistent private String codePostal;
@Persistent private String dateNaissance;
@Persistent private String lieuNaissance;
@Persistent private String groupe;
@Persistent private String emailParent;
public Eleve(String nom,String prenom,char sexe,String adresse,String codePostal, String dateNaissance,String lieuNaissance,String email,String emailParent) {
this.email=email;
this.nom=nom;
this.prenom=prenom;
this.sexe=sexe;
this.adresse=adresse;
this.codePostal=codePostal;
this.dateNaissance=dateNaissance;
this.lieuNaissance=lieuNaissance;
this.emailParent=emailParent;
this.groupe=null;
}
//Getters and Setters
}
パッケージクライアントの私のセルテーブル:
CellTable<Eleve> cellTable_Eleve = new CellTable<Eleve>();
Panel_Read_Eleve.add(cellTable_Eleve , 0, 32);
cellTable_Eleve .setSize("189px", "156px");
プロジェクトをコンパイルすると、多くのエラーが発生します。必要なモジュールを継承するのを忘れましたか?
私は助けが必要です、GWT開発のおかげでスターターです