Skip to main content



      Home
Home » Archived » Visual Editor (VE) » Modify property of multiple similar objects.
Modify property of multiple similar objects. [message #137314] Wed, 18 April 2007 13:53
Eclipse UserFriend
Hello,
We've been successfully extended VE and it works great! We're looking
into another feature. Here is a brief summary of it:

Let say we have something like this:

public class Test extends Composite
{
public void createObject1()
{
obj1 = new MyObject(...);
obj1.setTest("test");
}

public void createObject2()
{
obj2 = new MyObject(...);
obj2.setTest("test");
}
}

what we want to be able to do is when a user edit the attribute "Test"
in obj1 using Properties view, the attribute "Test" of both obj1 and
obj2 get changed. Currently, only attribute of obj1 gets changed. Is
there a way to do that programatically? Thanks.
Previous Topic:How to create a null IJavaInstance instance?
Next Topic:Modify property of multiple similar objects.
Goto Forum:
  


Current Time: Fri Jun 13 13:39:37 EDT 2025

Powered by FUDForum. Page generated in 0.03445 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top