public static NodeGeneratorInt Create(INametable codingTable) { var ng = new NodeGeneratorInt(codingTable); ng.SpecialTypes = new SpecialTypesClass(ng); return(ng); }
// : 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); }); }
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; }