コード例 #1
0
 public FoxmlDigitalObject(string version, string pid)
 {
     this.version   = version;
     this.pid       = pid;
     properties     = new FoxmlObjectProperties();
     datastreamList = new ArrayList();
 }
コード例 #2
0
 public FoxmlDigitalObject()
 {
     this.pid       = null;
     this.version   = null;
     properties     = new FoxmlObjectProperties();
     datastreamList = new ArrayList();
 }
コード例 #3
0
ファイル: FoxmlFile.cs プロジェクト: aureliopires/gisa
 public FoxmlDigitalObject(string version, string pid) {
     this.version = version;
     this.pid = pid;
     properties = new FoxmlObjectProperties();
     datastreamList = new ArrayList();
 }
コード例 #4
0
ファイル: FoxmlFile.cs プロジェクト: aureliopires/gisa
 public FoxmlDigitalObject() {
     this.pid = null;
     this.version = null;
     properties = new FoxmlObjectProperties();
     datastreamList = new ArrayList();
 }