public ExtensionProperty(String pn,vObject owner): base(pn,owner) { _val=new TextValue(); }
public OptionalProperty(String pn,vObject owner): base(pn,owner) { _val=new TextValue(); }
public Summary(vObject owner): base("SUMMARY",owner) { _val=new TextValue(); }
public Summary(vObject owner,String st): base("SUMMARY",owner) { _val=new TextValue(st); }
public void SetProdID(TextValue prid) { _val=prid; }
public Summary(vObject owner, String st) : base("SUMMARY", owner) { _val = new TextValue(st); }
public ProductID(vObject owner, TextValue prid) : base("PRODID", owner) { _val = prid; }
public ProductID(vObject owner): base("PRODID",owner) { _val=new TextValue(); }
public NameProperty(vObject owner, String nm) : base("N", owner) { _val = new TextValue(nm); }
public ProductID(vObject owner) : base("PRODID", owner) { _val = new TextValue(); }
public NameProperty(vObject owner) : base("N", owner) { _val = new TextValue(); }
public OptionalProperty(String pn, vObject owner) : base(pn, owner) { _val = new TextValue(); }
public ExtensionProperty(String pn, vObject owner) : base(pn, owner) { _val = new TextValue(); }
public NameProperty(vObject owner): base("N",owner) { _val=new TextValue(); }
public void SetProdID(TextValue prid) { _val = prid; }
public NameProperty(vObject owner,String nm): base("N",owner) { _val=new TextValue(nm); }
public Description(vObject owner) : base("DESCRIPTION", owner) { _val = new TextValue(); }
public ProductID(vObject owner,TextValue prid): base("PRODID",owner) { _val=prid; }
public void SetProdID(TextValue prid) { vObjectProperty pr=GetProperty("PRODID"); if(pr==null) SetProperty(new ProductID(this,prid)); else ((ProductID)pr).SetProdID(prid); }
public Description(vObject owner): base("DESCRIPTION",owner) { _val=new TextValue(); }
public Summary(vObject owner) : base("SUMMARY", owner) { _val = new TextValue(); }