https://developers.google.com/eclipse/docs/endpoints-addentitiesのサンプル チュートリアルに従おうとしていますが、GameEndpoint.Builder
クラスを Eclipse 内で生成する方法を理解するのに苦労しています。
これに従い、説明に従ってクラウド エンドポイントを生成した後、GameEndpoint
クラスを作成しましたが、クラスはありませんGameEndpoint.Builder
。だから明らかに私はこのエラーを持っています
GameEndpoint.Builder を型に解決できません
私はこの時点で困惑しています。GameEndpoint.Builder
Eclipse 内でクラスを生成するにはどうすればよいですか? またはそれを妨げるものは何ですか?
コード
public class NewGameTask extends AsyncTask<Context, Integer, Long> {
protected Long doInBackground(Context... contexts) {
GameEndpoint.Builder endpointBuilder = new GameEndpoint.Builder(
AndroidHttp.newCompatibleTransport(), new JacksonFactory(),
new HttpRequestInitializer() {
public void initialize(HttpRequest httpRequest) {
}
});
GameEndpoint endpoint = CloudEndpointUtils.updateBuilder(
endpointBuilder).build();
try {
Game game = new Game();
game.setStart(Calendar.getInstance());
Game result = endpoint.insertGame(game);
} catch (IOException e) {
e.printStackTrace();
}
return (long) 0;
}
}