Example #1
0
 /// <summary>
 /// Default ctor to build an empty container of the given flavor and given type
 /// </summary>
 public RDFContainer(RDFModelEnums.RDFContainerTypes containerType, RDFModelEnums.RDFItemTypes itemType)
 {
     this.ContainerType      = containerType;
     this.ItemType           = itemType;
     this.ReificationSubject = new RDFResource();
     this.Items = new List <RDFPatternMember>();
 }
Example #2
0
 /// <summary>
 /// Default ctor to build an empty container of the given flavor and given type
 /// </summary>
 public RDFContainer(RDFModelEnums.RDFContainerTypes containerType, RDFModelEnums.RDFItemTypes itemType)
 {
     this.ContainerType      = containerType;
     this.ItemType           = itemType;
     this.ReificationSubject = new RDFResource();
     this.Items = new ArrayList();
 }