public override void Initialize()
 {
     base.Initialize();
     this._PicElements      = new AnnotationElements();
     this._Owner            = new Worker();
     this._LayerAccessright = new BasicInfoDetail();
 }
        public override object Clone(string sNodeName)
        {
            AnnotationElements elements = new AnnotationElements();

            foreach (AnnotationElement element in this)
            {
                elements.Add((AnnotationElement)element.Clone(sNodeName));
            }
            return(elements);
        }