Example #1
0
 /**
  * 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);
     }
 }
Example #2
0
 /**
  * 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);
     }
 }
Example #3
0
 /**
  * Build out this collection with content.
  * @param content The content.
  * @return this.
  */
 public Collection SetContent(CollectionContent content)
 {
     AddContent(content);
     return this;
 }
Example #4
0
 /**
  * Build out this collection with content.
  * @param content The content.
  * @return this.
  */
 public Collection SetContent(CollectionContent content)
 {
     AddContent(content);
     return(this);
 }