Setting a Property Value
This sample code sets a property value in a Java™ object:
object ob;
ob = new ("somepackage.SomeClass", "example");
ob.someProperty = "hello";
//Sets the value of the someProperty property of ob to the string
//"hello"
This sample code sets a property value in a Java™ object:
object ob;
ob = new ("somepackage.SomeClass", "example");
ob.someProperty = "hello";
//Sets the value of the someProperty property of ob to the string
//"hello"