为setter方法之一设置List Item时卡住

时间:2017-11-24 10:51:06

标签: java arraylist

我正在尝试为字段设置

// takes List<JsonHistory> as argument
sprintdata.setJsonHistory()

public List<JsonHistory> getJsonHistory() {
    return jsonHistory;
}

public void setJsonHistory(List<JsonHistory> jsonHistory) {
    this.jsonHistory= jsonHistory;
}

以下是我尝试的完整impl,但无法在上面的setter方法中设置列表项。我遗漏了一些东西,你们可以告诉我我的错误。

json = jsonHistory(settings.getView(),sprint.getId(),settings.getCredentials(),settings.getBaseUrl());

    JsonHistory jsonHistory = new JsonHistory();

    jsonHistory.setCompleted(SomeUtil.getVelocity(json, sprint.getId(), "completedSum"));
    jsonHistory.setAllEstimate(SomeUtil.getVelocity(json, sprint.getId(), "allEstimateSum"));

    List<JsonHistory> jsonHistoryList = new ArrayList<JsonHistory>();
    sampleData.getJsonHistory().add(jsonHistory);
    jsonHistoryList.add(jsonHistory);

    sampleData.setJsonHistory(jsonHistoryList)

我为自己的错误道歉。

0 个答案:

没有答案