Newer
Older
CitrusClient / app / src / main / java / com / example / citrusclient / models / Task.java
t-watanabe on 26 Sep 407 bytes カレンダー完成
  1. package com.example.citrusclient.models;
  2.  
  3. import android.content.pm.LauncherApps;
  4.  
  5. public class Task {
  6. int bookId;
  7. String title;
  8.  
  9. public int getBookId(){
  10. return bookId;
  11. }
  12. public String getTitle(){
  13. return title;
  14. }
  15.  
  16. public void setBookId(int bookId){
  17. this.bookId = bookId;
  18. }
  19.  
  20. public void setTitle(String title){
  21. this.title = title;
  22. }
  23. }