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;
 }
Beispiel #6
0
 public Summary(vObject owner, String st) : base("SUMMARY", owner)
 {
     _val = new TextValue(st);
 }
Beispiel #7
0
 public ProductID(vObject owner, TextValue prid) : base("PRODID", owner)
 {
     _val = prid;
 }
 public ProductID(vObject owner): base("PRODID",owner)
 {
     _val=new TextValue();
 }
Beispiel #9
0
 public NameProperty(vObject owner, String nm) : base("N", owner)
 {
     _val = new TextValue(nm);
 }
Beispiel #10
0
 public ProductID(vObject owner) : base("PRODID", owner)
 {
     _val = new TextValue();
 }
Beispiel #11
0
 public NameProperty(vObject owner) : base("N", owner)
 {
     _val = new TextValue();
 }
Beispiel #12
0
 public OptionalProperty(String pn, vObject owner) : base(pn, owner)
 {
     _val = new TextValue();
 }
Beispiel #13
0
 public ExtensionProperty(String pn, vObject owner) : base(pn, owner)
 {
     _val = new TextValue();
 }
 public NameProperty(vObject owner): base("N",owner)
 {
     _val=new TextValue();
 }
Beispiel #15
0
 public void SetProdID(TextValue prid)
 {
     _val = prid;
 }
 public NameProperty(vObject owner,String nm): base("N",owner)
 {
     _val=new TextValue(nm);
 }
Beispiel #17
0
 public Description(vObject owner) : base("DESCRIPTION", owner)
 {
     _val = new TextValue();
 }
 public ProductID(vObject owner,TextValue prid): base("PRODID",owner)
 {
     _val=prid;
 }
Beispiel #19
0
		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();
 }
Beispiel #21
0
 public Summary(vObject owner) : base("SUMMARY", owner)
 {
     _val = new TextValue();
 }