コード例 #1
0
 public SimpleGraphNode(SimpleGraphBackend simpleGraphBackend, long id, string name, bool suburb)
 {
     this.graphBackend = simpleGraphBackend;
     this.id           = id;
     this.name         = name;
     this.suburb       = suburb;
 }
コード例 #2
0
        public SimpleGraphNode(SimpleGraphBackend simpleGraphBackend, long id, int nid, string ntype, string ntitle, string ncontent)
        {
            this.graphBackend = simpleGraphBackend;
            this.id           = id;

            this.nid      = nid;
            this.ntype    = ntype;
            this.ntitle   = ntitle;
            this.ncontent = ncontent;
        }
コード例 #3
0
 public SimpleGraphNode(SimpleGraphBackend simpleGraphBackend, long id)
 {
     this.graphBackend = simpleGraphBackend;
     this.id           = id;
 }