изменение умолчаний для контролов таблиц
This commit is contained in:
@@ -49,8 +49,12 @@ public class MainModule extends MainModule_<GlobalDatabase, MainUI> {
|
||||
return "_VisualDVM.Passes.All.";
|
||||
}
|
||||
//--
|
||||
public boolean HasAccount(){return get(Current.Account)!=null; } //Бессмысленно. аккаунт всегда подразумевается. вывести.
|
||||
public Account getAccount(){return (Account) get(Current.Account);} //временно
|
||||
public boolean HasAccount() {
|
||||
return get(Current.Account) != null;
|
||||
} //Бессмысленно. аккаунт всегда подразумевается. вывести.
|
||||
public Account getAccount() {
|
||||
return (Account) get(Current.Account);
|
||||
} //временно
|
||||
public boolean HasProject() {
|
||||
return get(Current.Project) != null;
|
||||
}
|
||||
@@ -122,12 +126,6 @@ public class MainModule extends MainModule_<GlobalDatabase, MainUI> {
|
||||
public FuncInfo getSelectionFunction() {
|
||||
return (FuncInfo) get(Current.SelectedFunction);
|
||||
}
|
||||
public db_project_info getPackageVersion() {
|
||||
return (db_project_info) get(Current.PackageVersion);
|
||||
}
|
||||
public boolean HasPackageVersion() {
|
||||
return get(Current.PackageVersion) != null;
|
||||
}
|
||||
public ProjectView getProjectView() {
|
||||
return (ProjectView) get(Current.ProjectView);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user