Package com.gophers.interfaces
Interface CompileCommand
- All Known Implementing Classes:
JavaCompileCommand
public interface CompileCommand
The CompileCommand interface defines a contract for compiling student
submission code.
-
Method Summary
Modifier and TypeMethodDescriptionbooleancompile()Compiles the student submission code and returns the result of the compilation.
-
Method Details
-
compile
boolean compile()Compiles the student submission code and returns the result of the compilation.- Returns:
trueif the compilation was successful,falseotherwise
-