blob: 09bd50f63382122c81ebfdc7a1db74903a0b0e49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.adaptor;
import org.osgi.framework.Bundle;
;
/**
* Contains information about activated bundles and acts as the main
* entry point for logging plugin activity.
*/
public interface BundleWatcher {
public void startActivation(Bundle bundle);
public void endActivation(Bundle bundle);
}