package org.lumijiez.base; import java.nio.file.Path; public class CodeFile extends Document{ public CodeFile(Path path) { super(path); } @Override public String getInfo() { return "CODE"; } }