public override void parseConfig(string str)
    {
        RefineSample be = new RefineSample(str);

        if (list == null)
        {
            list = new List <RefineSample>();
        }
        list.Add(be);
    }
Beispiel #2
0
    public override void copy(object destObj)
    {
        base.copy(destObj);
        RefineSample dest = destObj as RefineSample;

        if (this.refinelvAttr != null)
        {
            dest.refinelvAttr = new List <RefinelvInfo>();
            for (int i = 0; i < this.refinelvAttr.Count; i++)
            {
                dest.refinelvAttr[i] = this.refinelvAttr[i];
            }
        }
    }