mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 15:15:25 +02:00
[194475] removing discouraged access problems
This commit is contained in:
parent
1ac9cbbb8e
commit
700801e9c5
2 changed files with 9 additions and 1 deletions
|
@ -46,6 +46,7 @@ import org.eclipse.dstore.core.java.IClassByteStreamHandler;
|
|||
import org.eclipse.dstore.core.java.IRemoteClassInstance;
|
||||
import org.eclipse.dstore.core.java.RemoteClassLoader;
|
||||
import org.eclipse.dstore.core.util.StringCompare;
|
||||
import org.eclipse.dstore.extra.IDomainNotifier;
|
||||
import org.eclipse.dstore.internal.core.model.DefaultByteConverter;
|
||||
import org.eclipse.dstore.internal.core.util.DataElementRemover;
|
||||
import org.eclipse.dstore.internal.core.util.ExternalLoader;
|
||||
|
@ -763,7 +764,7 @@ public final class DataStore
|
|||
*
|
||||
* @return the domain notifier
|
||||
*/
|
||||
public DomainNotifier getDomainNotifier()
|
||||
public IDomainNotifier getDomainNotifier()
|
||||
{
|
||||
return _domainNotifier;
|
||||
}
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
package org.eclipse.dstore.extra;
|
||||
|
||||
|
||||
/**
|
||||
* For DataStore domain notification
|
||||
*
|
||||
*/
|
||||
public interface IDomainNotifier
|
||||
{
|
||||
|
||||
|
@ -26,4 +30,7 @@ public interface IDomainNotifier
|
|||
public void fireDomainChanged(DomainEvent event);
|
||||
public boolean hasDomainListener(IDomainListener listener);
|
||||
public void removeDomainListener(IDomainListener listener);
|
||||
|
||||
public void enable(boolean on);
|
||||
public boolean isEnabled();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue