no message
This commit is contained in:
15
src/_VisualDVM/Passes/All/PublishTest.java
Normal file
15
src/_VisualDVM/Passes/All/PublishTest.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package _VisualDVM.Passes.All;
|
||||
import _VisualDVM.Global;
|
||||
import _VisualDVM.TestingSystem.Common.Test.Test;
|
||||
import _VisualDVM.TestingSystem.Common.TestingServer;
|
||||
import _VisualDVM.Passes.Server.PublishServerObject;
|
||||
public class PublishTest extends PublishServerObject<TestingServer, Test> {
|
||||
public PublishTest() {
|
||||
super(Global.testingServer, Test.class);
|
||||
}
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
target = (Test) args[0];
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user