1   package com.stateofflow.eclipse.metrics.export.wizard;
2   
3   import org.eclipse.core.runtime.CoreException;
4   
5   interface Agent {
6       void initialise(ProjectProperties properties) throws CoreException;
7   
8       void updateStatus(final StatusUpdateable updateable);
9   }