private void CreateNewGloballMenuItem_Click(object sender, EventArgs e)
        {
            if (this.Protocol == null)
            {
                return;
            }
            Global g = new Definitions.Description.Global(this.Protocol);

            g.Name = "";
            if (!this.GlobalHolder.SetValue(g))
            {
                return;
            }
        }
 private void CreateNewGloballMenuItem_Click(object sender, EventArgs e)
 {
     if (this.Protocol == null)
         return;
     Global g = new Definitions.Description.Global(this.Protocol);
     g.Name = "";
     if (!this.GlobalHolder.SetValue(g))
         return;
 }