упорядочил папки с кодом.
This commit is contained in:
20
src/Common/Passes/All/AddDVMParameter.java
Normal file
20
src/Common/Passes/All/AddDVMParameter.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package Common.Passes.All;
|
||||
import Common.Database.DBObject;
|
||||
import Common.Database.Database;
|
||||
import Common.Global;
|
||||
import GlobalData.DVMParameter.DVMParameter;
|
||||
import GlobalData.RunConfiguration.RunConfiguration;
|
||||
import Common.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