Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/17 11:41:43 (8 years ago)
Author:
gkronber
Message:

#2520

  • renamed StorableClass -> StorableType
  • changed persistence to use GUIDs instead of type names
Location:
branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/AlgorithmView.Designer.cs

    r12012 r14711  
    292292      this.dataTypeGroupBox.TabIndex = 9;
    293293      this.dataTypeGroupBox.TabStop = false;
    294       this.dataTypeGroupBox.Text = "Data Type";
     294      this.dataTypeGroupBox.Text = "Data MemberSelection";
    295295      //
    296296      // dataTypeTypeNameTextBox
     
    302302      this.dataTypeTypeNameTextBox.Size = new System.Drawing.Size(537, 20);
    303303      this.dataTypeTypeNameTextBox.TabIndex = 3;
    304       this.toolTip.SetToolTip(this.dataTypeTypeNameTextBox, "Machine Readable Data Type Name (e.g. Assembly Qualified Name)");
     304      this.toolTip.SetToolTip(this.dataTypeTypeNameTextBox, "Machine Readable Data MemberSelection Name (e.g. Assembly Qualified Name)");
    305305      this.dataTypeTypeNameTextBox.TextChanged += new System.EventHandler(this.dataTypeTypeNameTextBox_TextChanged);
    306306      //
     
    313313      this.dataTypeNameTextBox.Size = new System.Drawing.Size(537, 20);
    314314      this.dataTypeNameTextBox.TabIndex = 1;
    315       this.toolTip.SetToolTip(this.dataTypeNameTextBox, "Human Readable Data Type Name");
     315      this.toolTip.SetToolTip(this.dataTypeNameTextBox, "Human Readable Data MemberSelection Name");
    316316      this.dataTypeNameTextBox.TextChanged += new System.EventHandler(this.dataTypeNameTextBox_TextChanged);
    317317      //
     
    323323      this.dataTypeTypeNameLabel.Size = new System.Drawing.Size(65, 13);
    324324      this.dataTypeTypeNameLabel.TabIndex = 2;
    325       this.dataTypeTypeNameLabel.Text = "&Type Name:";
     325      this.dataTypeTypeNameLabel.Text = "&MemberSelection Name:";
    326326      //
    327327      // openFileDialog
  • branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/ProblemView.Designer.cs

    r12012 r14711  
    291291      this.dataTypeGroupBox.TabIndex = 9;
    292292      this.dataTypeGroupBox.TabStop = false;
    293       this.dataTypeGroupBox.Text = "Data Type";
     293      this.dataTypeGroupBox.Text = "Data MemberSelection";
    294294      //
    295295      // dataTypeTypeNameTextBox
     
    301301      this.dataTypeTypeNameTextBox.Size = new System.Drawing.Size(537, 20);
    302302      this.dataTypeTypeNameTextBox.TabIndex = 3;
    303       this.toolTip.SetToolTip(this.dataTypeTypeNameTextBox, "Machine Readable Data Type Name (e.g. Assembly Qualified Name)");
     303      this.toolTip.SetToolTip(this.dataTypeTypeNameTextBox, "Machine Readable Data MemberSelection Name (e.g. Assembly Qualified Name)");
    304304      this.dataTypeTypeNameTextBox.TextChanged += new System.EventHandler(this.dataTypeTypeNameTextBox_TextChanged);
    305305      //
     
    312312      this.dataTypeNameTextBox.Size = new System.Drawing.Size(537, 20);
    313313      this.dataTypeNameTextBox.TabIndex = 1;
    314       this.toolTip.SetToolTip(this.dataTypeNameTextBox, "Human Readable Data Type Name");
     314      this.toolTip.SetToolTip(this.dataTypeNameTextBox, "Human Readable Data MemberSelection Name");
    315315      this.dataTypeNameTextBox.TextChanged += new System.EventHandler(this.dataTypeNameTextBox_TextChanged);
    316316      //
     
    322322      this.dataTypeTypeNameLabel.Size = new System.Drawing.Size(65, 13);
    323323      this.dataTypeTypeNameLabel.TabIndex = 2;
    324       this.dataTypeTypeNameLabel.Text = "&Type Name:";
     324      this.dataTypeTypeNameLabel.Text = "&MemberSelection Name:";
    325325      //
    326326      // openFileDialog
  • branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBAlgorithmView.cs

    r12012 r14711  
    302302            else if (!Content.ProblemType.IsInstanceOfType(problem))
    303303              Invoke(new Action(() =>
    304                 MessageBox.Show(this, "The selected file contains a problem type which is not supported by this algorithm.", "Invalid Problem Type", MessageBoxButtons.OK, MessageBoxIcon.Error)));
     304                MessageBox.Show(this, "The selected file contains a problem type which is not supported by this algorithm.", "Invalid Problem MemberSelection", MessageBoxButtons.OK, MessageBoxIcon.Error)));
    305305            else
    306306              Content.Problem = problem;
     
    338338    private void problemTabPage_DragEnterOver(object sender, DragEventArgs e) {
    339339      e.Effect = DragDropEffects.None;
    340       Type type = e.Data.GetData("Type") as Type;
     340      Type type = e.Data.GetData("MemberSelection") as Type;
    341341      if ((type != null) && (Content.ProblemType.IsAssignableFrom(type))) {
    342342        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
  • branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBExperimentUploadView.Designer.cs

    r12971 r14711  
    144144      // AlgorithmTypeColumn
    145145      //
    146       this.AlgorithmTypeColumn.HeaderText = "Algorithm Type";
     146      this.AlgorithmTypeColumn.HeaderText = "Algorithm MemberSelection";
    147147      this.AlgorithmTypeColumn.Name = "AlgorithmTypeColumn";
    148148      this.AlgorithmTypeColumn.ReadOnly = true;
     
    163163      // ProblemTypeColumn
    164164      //
    165       this.ProblemTypeColumn.HeaderText = "Problem Type";
     165      this.ProblemTypeColumn.HeaderText = "Problem MemberSelection";
    166166      this.ProblemTypeColumn.Name = "ProblemTypeColumn";
    167167      this.ProblemTypeColumn.ReadOnly = true;
  • branches/PersistenceOverhaul/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBExperimentUploadView.cs

    r12971 r14711  
    3636  public partial class OKBExperimentUploadView : View {
    3737
    38     private const string AlgorithmTypeParameterName = "Algorithm Type";
    39     private const string ProblemTypeParameterName = "Problem Type";
     38    private const string AlgorithmTypeParameterName = "Algorithm MemberSelection";
     39    private const string ProblemTypeParameterName = "Problem MemberSelection";
    4040    private const string AlgorithmNameParameterName = "Algorithm Name";
    4141    private const string ProblemNameParameterName = "Problem Name";
Note: See TracChangeset for help on using the changeset viewer.