コメント

This commit is contained in:
r-ca 2024-01-14 16:11:43 +09:00
parent 885cd77d5b
commit 5e6fa45fed
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -7,6 +7,8 @@ public class Page {
String fileName; String fileName;
Bitmap bitmap; Bitmap bitmap;
// Constructor
public Page() { public Page() {
} }
@ -15,6 +17,8 @@ public class Page {
this.bitmap = bitmap; this.bitmap = bitmap;
} }
// Getter
public String getFileName() { public String getFileName() {
return fileName; return fileName;
} }
@ -23,6 +27,8 @@ public class Page {
return bitmap; return bitmap;
} }
// Setter
public void setFileName(String fileName) { public void setFileName(String fileName) {
this.fileName = fileName; this.fileName = fileName;
} }