Big code clean-up, added interfaces, and colored text

This commit is contained in:
2023-10-17 15:19:08 +03:00
parent 4ecd73d4ed
commit 79a11cf6cb
10 changed files with 135 additions and 88 deletions

View File

@@ -0,0 +1,10 @@
package org.lumijiez.interfaces;
import java.util.Date;
public interface IDocument {
public String getFilename();
public String getExtension();
public Date getCreatedTime();
public Date getModificationTime();
}