blob: c9f5242a5ddf9db8a8a4683dbd95dbe7372955ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.monitor.ui;
import org.eclipse.mylyn.monitor.core.InteractionEvent;
import org.eclipse.ui.activities.ActivityManagerEvent;
import org.eclipse.ui.activities.IActivityManagerListener;
/**
* @author Mik Kersten
*/
public class ActivityChangeMonitor implements IActivityManagerListener {
private static final String ACTIVITIES_CHANGED = "activities changed"; //$NON-NLS-1$
public void activityManagerChanged(ActivityManagerEvent activityManagerEvent) {
if (activityManagerEvent.haveEnabledActivityIdsChanged()) {
String source = activityManagerEvent.getActivityManager().toString();
String delta = activityManagerEvent.getActivityManager().getEnabledActivityIds().toString();
InteractionEvent interactionEvent = InteractionEvent.makePreference(source, ACTIVITIES_CHANGED + ": " //$NON-NLS-1$
+ delta);
MonitorUiPlugin.getDefault().notifyInteractionObserved(interactionEvent);
}
}
}