Exemple #1
0
        public void addImage(Image img)
        {
            if (this.pImageQueue == null)
            {
                this.pImageQueue = new ImageHolderMan();
            }

            this.pCrntImgHolder = this.pImageQueue.AddImageHolder(img);
        }
Exemple #2
0
        public override DLink Wash()
        {
            this.pImage         = null;
            this.pImageQueue    = null;
            this.pCrntImgHolder = null;
            this.name           = Name.Uninitialized;
            this.pProxy         = null;

            return(this);
        }
Exemple #3
0
        public void addImage(Image.Name imgName)
        {
            if (this.pImageQueue == null)
            {
                this.pImageQueue = new ImageHolderMan();
            }

            Image img = ImageManager.getInstance().FindImageByName(imgName);

            this.pCrntImgHolder = this.pImageQueue.AddImageHolder(img);
        }