Added Document subclasses

This commit is contained in:
2023-10-17 15:48:37 +03:00
parent 79a11cf6cb
commit 3589237e33
7 changed files with 88 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
package org.lumijiez.base;
import java.nio.file.Path;
public class CodeFile extends Document{
public CodeFile(Path path) {
super(path);
}
}