Esempio n. 1
0
        public void load(string[] labels)
        {
            if (labels.Length > 0)
            {
                for (int i = 0; i < labels.Length; i++)
                {
                    if (labels[i].Equals(""))
                        continue;

                    string labelLine = labels[i];
                    string[] prop = labelLine.Split('=');
                    string equipment = prop[0];
                    string[] labelText = prop[1].Split(',');
                    this.equipmentNames.Add(equipment);
                    this.labelItemNamems.Add(equipment, new Dictionary<string, LabelItem>());
                    for (int j = 0; j < labelText.Length; j++)
                    {
                        if (!labelText[j].Equals(""))
                        {
                            string[] labelSubElement = labelText[j].Split('|');
                            string labelName = labelSubElement[0];
                            string labelType = labelSubElement[1];
                            string inputOutput = labelSubElement[2];
                            LabelItem item = new LabelItem();
                            item.labelName = labelName;
                            item.labelType = labelType;
                            item.inputOutput = inputOutput;
                            labelItemNamems[equipment].Add(labelName, item);
                        }
                    }
                }
            }
        }
Esempio n. 2
0
        public void load(string[] labels)
        {
            if (labels.Length > 0)
            {
                for (int i = 0; i < labels.Length; i++)
                {
                    if (labels[i].Equals(""))
                    {
                        continue;
                    }

                    string   labelLine = labels[i];
                    string[] prop      = labelLine.Split('=');
                    string   equipment = prop[0];
                    string[] labelText = prop[1].Split(',');
                    this.equipmentNames.Add(equipment);
                    this.labelItemNamems.Add(equipment, new Dictionary <string, LabelItem>());
                    for (int j = 0; j < labelText.Length; j++)
                    {
                        if (!labelText[j].Equals(""))
                        {
                            string[]  labelSubElement = labelText[j].Split('|');
                            string    labelName       = labelSubElement[0];
                            string    labelType       = labelSubElement[1];
                            string    inputOutput     = labelSubElement[2];
                            LabelItem item            = new LabelItem();
                            item.labelName   = labelName;
                            item.labelType   = labelType;
                            item.inputOutput = inputOutput;
                            labelItemNamems[equipment].Add(labelName, item);
                        }
                    }
                }
            }
        }