示例#1
0
        public static NodeGeneratorInt Create(INametable codingTable)
        {
            var ng = new NodeGeneratorInt(codingTable);

            ng.SpecialTypes = new SpecialTypesClass(ng);
            return(ng);
        }
示例#2
0
 //        : base(new SecondStringGraph(path))
 public Store(string path)
     : base(path)
 {
     NodeGenerator =
         ng = NodeGeneratorInt.Create(path, table.TableCell.IsEmpty);
     NamedGraphs = new NamedGraphsByFolders(new DirectoryInfo(path), ng, d => new RDFGraph(d.FullName + "/") { NodeGenerator = NodeGenerator },
         d => { d.Delete(true); });
 }
示例#3
0
 public static NodeGeneratorInt Create(string path, bool isEmpty)
 {
     var ng = new NodeGeneratorInt(path, isEmpty);
     ng.SpecialTypes = new SpecialTypesClass(ng);
     return ng;
 }
 public static NodeGeneratorInt Create(string path)
 {
     var ng = new NodeGeneratorInt(path);
     ng.SpecialTypes = new SpecialTypesClass(ng);
     return ng;
 }