no message
This commit is contained in:
16
src/Visual_DVM_2021/Passes/All/PublishTestProject.java
Normal file
16
src/Visual_DVM_2021/Passes/All/PublishTestProject.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import ProjectData.Project.db_project_info;
|
||||
import TestingSystem.Common.Test.Test;
|
||||
import Visual_DVM_2021.Passes.Server.TestingSystemPass;
|
||||
public class PublishTestProject extends TestingSystemPass<Test> {
|
||||
protected db_project_info project = null;
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
target = (Test) args[0];
|
||||
project= (db_project_info) args[1];
|
||||
return true;
|
||||
}
|
||||
@Override
|
||||
protected void ServerAction() throws Exception {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user