blob: 7c453da0894ec816e55751a714be56a6b585b601 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.viewers;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.Viewer;
public final class StaticContentProvider implements IStructuredContentProvider {
private Object[] elements;
public StaticContentProvider(Object[] elements) {
this.elements = elements;
}
public Object[] getElements(Object inputElement) {
return elements;
}
public void dispose() {
// nothing to dispose
}
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
if (newInput instanceof Object[])
this.elements = (Object[]) newInput;
}
}