Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java')
-rw-r--r--examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java b/examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java
index 004b7df69..6c52f785e 100644
--- a/examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java
+++ b/examples/org.eclipse.emf.examples.databinding.project.ui.rcp/src/org/eclipse/emf/example/databinding/project/ui/rcp/Activator.java
@@ -39,6 +39,7 @@ public class Activator extends AbstractUIPlugin implements ServiceListener
// The shared instance
private static Activator plugin;
+ @SuppressWarnings("rawtypes")
private ServiceTracker tracker;
private IModelLoadingService loadingService;
@@ -53,6 +54,7 @@ public class Activator extends AbstractUIPlugin implements ServiceListener
}
@Override
+ @SuppressWarnings({ "unchecked", "rawtypes" })
public void start(BundleContext context) throws Exception
{
super.start(context);
@@ -117,6 +119,7 @@ public class Activator extends AbstractUIPlugin implements ServiceListener
return null;
}
+ @SuppressWarnings({ "rawtypes", "unchecked" })
public void serviceChanged(ServiceEvent event)
{
ServiceReference sr = event.getServiceReference();

Back to the top