コンストラクタ追加

This commit is contained in:
ろむねこ 2023-12-14 11:39:08 +09:00
parent f28e506060
commit d40a630487
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -8,6 +8,16 @@ public class DocumentPath {
String rootPath; String rootPath;
String path; String path;
// Constructor
public DocumentPath() {
}
public DocumentPath(String rootPath, String path) {
this.rootPath = rootPath;
this.path = path;
}
// Getter // Getter
public String getRootPath() { public String getRootPath() {