Mobile Tools for Java
Release 1.0

org.eclipse.mtj.core.project.runtime.event
Interface IMTJRuntimeChangeListener


public interface IMTJRuntimeChangeListener

Classes that implement this interface provide methods that deal with the events that are generated when the properties of a MTJRuntime change.

All Events are constructed with a reference to the object, the "source", that is logically deemed to be the object upon which the Event in question initially occurred upon.

EXPERIMENTAL. This class or interface has been added as part of a work in progress. There is no guarantee that this API will work or that it will remain the same. Please do not use this API without consulting with the MTJ team.

Since:
1.0

Method Summary
 void deviceChanged(MTJRuntimeDeviceChangeEvent event)
          Sent when the MTJRuntime.setDevice(org.eclipse.mtj.core.sdk.device.IDevice) method is invoked.
 void nameChanged(MTJRuntimeNameChangeEvent event)
          Sent when the MTJRuntime.setName(String) method is invoked.
 void symbolSetChanged()
          Sent when the MTJRuntime.fireSymbolSetChanged() method is invoked.
 void workspaceScopeSymbolSetsChanged(MTJRuntimeWorkspaceSymbolSetsChangeEvent event)
          Sent when the MTJRuntime.setWorkspaceScopeSymbolSets(java.util.List) method is invoked.
 

Method Detail

deviceChanged

void deviceChanged(MTJRuntimeDeviceChangeEvent event)
Sent when the MTJRuntime.setDevice(org.eclipse.mtj.core.sdk.device.IDevice) method is invoked.

Parameters:
event - an MTJRuntimeDeviceChangeEvent object containing the device information.

nameChanged

void nameChanged(MTJRuntimeNameChangeEvent event)
Sent when the MTJRuntime.setName(String) method is invoked.

Parameters:
event - an MTJRuntimeNameChangeEvent object containing the name information.

symbolSetChanged

void symbolSetChanged()
Sent when the MTJRuntime.fireSymbolSetChanged() method is invoked.


workspaceScopeSymbolSetsChanged

void workspaceScopeSymbolSetsChanged(MTJRuntimeWorkspaceSymbolSetsChangeEvent event)
Sent when the MTJRuntime.setWorkspaceScopeSymbolSets(java.util.List) method is invoked.

Parameters:
event - an MTJRuntimeWorkspaceSymbolSetsChangeEvent object containing the workspace SymbolSet information.

Mobile Tools for Java
Release 1.0