no message
This commit is contained in:
@@ -13,6 +13,9 @@ import javax.swing.*;
|
||||
public class CompilersForm extends DataSetControlForm<Compiler> {
|
||||
public CompilersForm(DataSet<?, Compiler> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<Compiler>("описание") {
|
||||
@Override
|
||||
|
||||
@@ -9,6 +9,9 @@ import javax.swing.*;
|
||||
public class CompilerEnvironmentsForm extends DataSetControlForm<CompilerEnvironment> {
|
||||
public CompilerEnvironmentsForm(DataSet<?, CompilerEnvironment> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<CompilerEnvironment>("Значение") {
|
||||
@Override
|
||||
|
||||
@@ -9,6 +9,9 @@ import javax.swing.*;
|
||||
public class CompilerOptionsForm extends DataSetControlForm<CompilerOption> {
|
||||
public CompilerOptionsForm(DataSet<?, CompilerOption> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<CompilerOption>("Параметр") {
|
||||
@Override
|
||||
|
||||
@@ -12,6 +12,9 @@ import javax.swing.*;
|
||||
public class DVMParametersForm extends DataSetControlForm<DVMParameter> {
|
||||
public DVMParametersForm(DataSet<?, DVMParameter> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<DVMParameter>("имя") {
|
||||
@Override
|
||||
|
||||
@@ -14,6 +14,13 @@ import javax.swing.*;
|
||||
public class EnvironmentsValuesForm extends DataSetControlForm<EnvironmentValue> {
|
||||
public EnvironmentsValuesForm(DataSet<?, EnvironmentValue> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected boolean hasCheckBox() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<EnvironmentValue>("имя") {
|
||||
@Override
|
||||
@@ -30,10 +37,6 @@ public class EnvironmentsValuesForm extends DataSetControlForm<EnvironmentValue>
|
||||
);
|
||||
}
|
||||
@Override
|
||||
protected boolean hasCheckBox() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
public DataMenuBar createMenuBar() {
|
||||
return new DataMenuBar(dataSource.getPluralDescription(),
|
||||
PassCode.AddEnvironmentValue,
|
||||
|
||||
@@ -9,6 +9,9 @@ import javax.swing.*;
|
||||
public class DirInfosForm extends DataSetControlForm<DirInfo> {
|
||||
public DirInfosForm(DataSet<?, DirInfo> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<DirInfo>("дата изменения") {
|
||||
@Override
|
||||
|
||||
@@ -16,6 +16,9 @@ import java.awt.event.ActionListener;
|
||||
public class MachinesForm extends DataSetControlForm<Machine> {
|
||||
public MachinesForm(DataSet<?, Machine> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<Machine>("URL") {
|
||||
@Override
|
||||
|
||||
@@ -15,6 +15,9 @@ import javax.swing.*;
|
||||
public class MakefilesForm extends DataSetControlForm<Makefile> {
|
||||
public MakefilesForm(DataSet<?, Makefile> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<Makefile>("Линковщик") {
|
||||
@Override
|
||||
|
||||
@@ -14,6 +14,13 @@ import javax.swing.*;
|
||||
public class ModulesForm extends DataSetControlForm<Module> {
|
||||
public ModulesForm(DataSet<?, Module> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected boolean isPKVisible() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<Module>("Язык") {
|
||||
@Override
|
||||
@@ -40,7 +47,6 @@ public class ModulesForm extends DataSetControlForm<Module> {
|
||||
}
|
||||
}
|
||||
);
|
||||
getColumnInfo(0).setVisible(false);
|
||||
}
|
||||
@Override
|
||||
public DataMenuBar createMenuBar() {
|
||||
|
||||
@@ -13,6 +13,13 @@ import javax.swing.*;
|
||||
public class RunConfigurationsForm extends DataSetControlForm<RunConfiguration> {
|
||||
public RunConfigurationsForm(DataSet<?, RunConfiguration> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected boolean hasCheckBox() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<RunConfiguration>("Команда") {
|
||||
@Override
|
||||
@@ -59,10 +66,6 @@ public class RunConfigurationsForm extends DataSetControlForm<RunConfiguration>
|
||||
);
|
||||
}
|
||||
@Override
|
||||
protected boolean hasCheckBox() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
public DataMenuBar createMenuBar() {
|
||||
return new DataMenuBar(dataSource.getPluralDescription(),
|
||||
PassCode.Run,
|
||||
|
||||
@@ -13,6 +13,9 @@ import java.util.Date;
|
||||
public class SapforProfilesForm extends DataSetControlForm<SapforProfile> {
|
||||
public SapforProfilesForm(DataSet<?, SapforProfile> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<SapforProfile>("Описание") {
|
||||
@Override
|
||||
|
||||
@@ -10,6 +10,9 @@ import javax.swing.*;
|
||||
public class SapforProfileSettingsForm extends DataSetControlForm<SapforProfileSetting> {
|
||||
public SapforProfileSettingsForm(DataSet<?, SapforProfileSetting> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<SapforProfileSetting>("имя") {
|
||||
@Override
|
||||
@@ -24,13 +27,16 @@ public class SapforProfileSettingsForm extends DataSetControlForm<SapforProfileS
|
||||
}
|
||||
}
|
||||
);
|
||||
getColumnInfo(0).setVisible(false);
|
||||
}
|
||||
@Override
|
||||
protected boolean hasCheckBox() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
protected boolean isPKVisible() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
protected boolean hasMenuBar() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -16,6 +16,9 @@ import javax.swing.*;
|
||||
public class CompilationTasksForm extends DataSetControlForm<CompilationTask> {
|
||||
public CompilationTasksForm(DataSet<?, CompilationTask> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<CompilationTask>("сборка") {
|
||||
@Override
|
||||
|
||||
@@ -18,6 +18,9 @@ import javax.swing.*;
|
||||
public class RunTasksForm extends DataSetControlForm<RunTask> {
|
||||
public RunTasksForm(DataSet<?, RunTask> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<RunTask>("Матрица") {
|
||||
@Override
|
||||
|
||||
@@ -15,6 +15,9 @@ import javax.swing.*;
|
||||
public class UsersForm extends DataSetControlForm<User> {
|
||||
public UsersForm(DataSet<?, User> dataSource_in, JPanel mountPanel_in) {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
protected void createColumns() {
|
||||
AddColumns(
|
||||
new ColumnInfo<User>("Логин") {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user