/** * Add a reference to the record content values being used as evidence. * * @param content The content to be added. */ public void AddContent(CollectionContent content) { if (content != null) { if (this._content == null) { this._content = new List <CollectionContent>(); } this._content.Add(content); } }
/** * Add a reference to the record content values being used as evidence. * * @param content The content to be added. */ public void AddContent(CollectionContent content) { if (content != null) { if (this._content == null) { this._content = new List<CollectionContent>(); } this._content.Add(content); } }
/** * Build out this collection with content. * @param content The content. * @return this. */ public Collection SetContent(CollectionContent content) { AddContent(content); return this; }
/** * Build out this collection with content. * @param content The content. * @return this. */ public Collection SetContent(CollectionContent content) { AddContent(content); return(this); }