コード例 #1
0
ファイル: UrlListWrapper.java プロジェクト: Ailrun/LINKBOX
 public void edit(
     UrlListData original, String newTitle, Callback<MainServerData<Object>> callback) {
   UrlListData urlListData = original.clone();
   urlListData.urlTitle = newTitle;
   urlListInterface.edit(
       LinkBoxController.usrListData.usrKey,
       LinkBoxController.currentBox.boxKey,
       urlListData,
       callback);
 }