no message

This commit is contained in:
2024-10-22 19:54:51 +03:00
parent 84c3813894
commit bf5d5442d4
10 changed files with 12 additions and 22 deletions

View File

@@ -10,7 +10,7 @@ public class DeleteServerObject<S extends RepositoryServer, D extends DBObject>
public String getIconPath() {
return "/Common/icons/Delete.png";
}
public String getDescription_(){
public String getDescription_() {
return "удаление";
}
@Override

View File

@@ -24,7 +24,7 @@ public class DeleteServerObjects<S extends RepositoryServer, D extends DBObject>
}
@Override
public String getDescription() {
return getDb().getTable(d).getPluralDescription()+": удаление";
return getDb().getTable(d).getPluralDescription() + ": удаление";
}
@Override
public String getButtonText() {

View File

@@ -12,7 +12,7 @@ public class EditServerObject<S extends RepositoryServer, D extends DBObject> ex
public String getIconPath() {
return "/Common/icons/Edit.png";
}
public String getDescription_(){
public String getDescription_() {
return "редактирование";
}
//--

View File

@@ -14,7 +14,7 @@ public class PublishServerObject<S extends RepositoryServer, D extends DBObject>
public String getIconPath() {
return "/Common/icons/RedAdd.png";
}
public String getDescription_(){
public String getDescription_() {
return "публикация";
}
//--

View File

@@ -10,12 +10,12 @@ public abstract class ServerObjectPass<S extends RepositoryServer, D extends DBO
super(server_in);
d = d_in;
}
public String getDescription_(){
public String getDescription_() {
return "?";
}
@Override
public String getDescription() {
return getDb().getTable(d).getSingleDescription()+": "+ getDescription_();
return getDb().getTable(d).getSingleDescription() + ": " + getDescription_();
}
//--
@Override