org.eclipse.core.runtime.IRegistryChangeListener Java Examples

The following examples show how to use org.eclipse.core.runtime.IRegistryChangeListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ExtensionRegistry.java    From birt with Eclipse Public License 1.0 4 votes vote down vote up
public void addRegistryChangeListener( IRegistryChangeListener arg0 )
{
	throw new UnsupportedOperationException(
			"addRegistryChangeListener is not implemented yet" );
}
 
Example #2
Source File: ExtensionRegistry.java    From birt with Eclipse Public License 1.0 4 votes vote down vote up
public void addRegistryChangeListener( IRegistryChangeListener listener,
		String token )
{
	throw new UnsupportedOperationException(
			"addRegistryChangeListener is not implemented yet" );
}
 
Example #3
Source File: ExtensionRegistry.java    From birt with Eclipse Public License 1.0 4 votes vote down vote up
public void removeRegistryChangeListener( IRegistryChangeListener listener )
{
	throw new UnsupportedOperationException(
			"removeRegistryChangeListener is not implemented yet" );
}