Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-dev] Information on events and messages for adding/deleting nodes in machine view

Dave,

In the AbstractResourceManager class there is the method,
 	protected void fireEvent(final IModelEvent event)
that informs the machine view to rebuild its contents.

An example of its use is found in 
RuntimeResourceManager's
	public void runtimeNodeGeneralChange(String[] keys,
                                             String[] values)
method, around line 300:
 if (newEntity) {
   fireEvent(new ModelSysChangedEvent( 
                   IModelSysChangedEvent.MAJOR_SYS_CHANGED,
                   null));
}

I would like to change all of these events and handlers,
but probably won't get around to it for a while.

Regards,
Randy

On Mon, 2006-12-18 at 20:12 -0500, Dave Wootton wrote:
> Craig, Randy
> One of you asked that I send a reminder to the ptp-dev mailing list asking
> for information about the events and the message formats my resource
> manager code needs to send in order to add or remove nodes from the machine
> view.
> 
> Thanks
> 
> Dave
> 
> _______________________________________________
> ptp-dev mailing list
> ptp-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/ptp-dev



Back to the top