Java 类org.eclipse.core.resources.ISaveParticipant 实例源码

项目:eclipse-timekeeper    文件:TimekeeperPlugin.java   
@Override
public void start(BundleContext context) throws Exception {
    super.start(context);
    connectToDatabase();
    createSaveJob();
    ISaveParticipant saveParticipant = new WorkspaceSaveParticipant();
       ResourcesPlugin.getWorkspace().addSaveParticipant(BUNDLE_ID, saveParticipant);
}
项目:che    文件:Workspace.java   
@Override
public ISavedState addSaveParticipant(Plugin plugin, ISaveParticipant iSaveParticipant)
    throws CoreException {
  throw new UnsupportedOperationException();
}
项目:che    文件:Workspace.java   
@Override
public ISavedState addSaveParticipant(String s, ISaveParticipant iSaveParticipant)
    throws CoreException {
  throw new UnsupportedOperationException();
}