20
src/Visual_DVM_2021/Passes/All/AddDVMParameter.java
Normal file
20
src/Visual_DVM_2021/Passes/All/AddDVMParameter.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.Database.DBObject;
|
||||
import Common.Database.Database;
|
||||
import Common.Global;
|
||||
import GlobalData.DVMParameter.DVMParameter;
|
||||
import GlobalData.RunConfiguration.RunConfiguration;
|
||||
import Visual_DVM_2021.Passes.AddObjectPass;
|
||||
public class AddDVMParameter extends AddObjectPass<DVMParameter> {
|
||||
public AddDVMParameter() {
|
||||
super(DVMParameter.class);
|
||||
}
|
||||
@Override
|
||||
public Class<? extends DBObject> getOwner() {
|
||||
return RunConfiguration.class;
|
||||
}
|
||||
@Override
|
||||
protected Database getDb() {
|
||||
return Global.db;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user