示例#1
0
文件: Album.cs 项目: Epibatidin/FLUX
        public Album(string AlbumPath, AbstractInstance off)
        {
            this.oneInstanceUp = off;
            AbsoluteAlbumPath = AlbumPath;

            //relevantInformation = chopGivenInformation();
        }
示例#2
0
        //das problem ist das immer nur nachbar instanzen verglichen werden
        protected void clearKnownInformation(AbstractInstance root, AbstractInstance sub)
        {
            if (root == null || sub == null) return;

            sub.relevantInformation = SeekAndDestroy
                (Algs.joinString(root.relevantInformation),
                Algs.joinString(sub.relevantInformation));
        }