public KeywordsProject()
 {
     Sources    = new SourceHub();
     Keywords   = new KeywordHub();
     Extractor  = new KeywordsExtractor();
     HasChanged = false;
 }
Beispiel #2
0
        private ListViewItem[] GetSourceListViewItems(SourceHub sources)
        {
            var items = new List <ListViewItem>();

            if (sources != null)
            {
                sources.Items.ForEach(s =>
                {
                    items.Add(GetSingleSourceListViewItem(s));
                });
            }
            return(items.ToArray());
        }