blob: 4384a90bd1712c202bea7f44a3dc6305a52f259b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.container;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.osee.framework.ui.workspacebundleloader.JarCollectionNature;
public class LibraryChangeProvider<T extends JarCollectionNature> {
private final List<IUserLibListener> listeners;
public LibraryChangeProvider() {
listeners = new ArrayList<>();
}
public void addListener(IUserLibListener listener) {
if (!listeners.contains(listener)) {
listeners.add(listener);
}
}
public void handleBundleAdded(URL url) {
resetClasspath();
}
private void resetClasspath() {
for (IUserLibListener listener : listeners) {
listener.libraryChanged();
// try {
// this.oteClasspathContainer.javaProject.getPerProjectInfo().resetResolvedClasspath();
// }
// catch (JavaModelException ex) {
// ex.printStackTrace();
// }
}
}
public void handleBundleChanged(URL url) {
}
public void handleBundleRemoved(URL url) {
resetClasspath();
}
public void handleNatureClosed(T nature) {
resetClasspath();
}
public void handlePostChange() {
}
}