Esempio n. 1
0
        public static NodeGeneratorInt Create(INametable codingTable)
        {
            var ng = new NodeGeneratorInt(codingTable);

            ng.SpecialTypes = new SpecialTypesClass(ng);
            return(ng);
        }
Esempio n. 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); });
 }
Esempio n. 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;
 }