Example #1
0
 private ISourceList buildSource(Element spellElement) {
   IExaltedSourceBook[] sources = sourceBuilder.buildSourceList(spellElement);
   SourceList sourceList = new SourceList();
   for (IExaltedSourceBook source : sources) {
     sourceList.addSource(source);
   }
   return sourceList;
 }