blob: b4e72d8b950940d8c014c7c42c7f447fc8bd2282 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.progress;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.Viewer;
/**
* The ProgressContentProvider is the content provider used for classes that
* listen to the progress changes.
*/
public abstract class ProgressContentProvider implements IProgressUpdateCollector, IStructuredContentProvider {
/**
* Return whether or not we check the preferences or override.
*/
private boolean canShowDebug = false;
/**
* Create a new instance of the receiver with all of the default values.
*/
public ProgressContentProvider() {
super();
}
/**
* Create a new instance of the receiver with a flag to indicate if there will
* be debug info shown or not.
*
* @param debug If true debug information will be shown if the debug flag in the
* ProgressManager is true.
*/
public ProgressContentProvider(boolean debug) {
this();
canShowDebug = debug;
}
@Override
public Object[] getElements(Object inputElement) {
return ProgressManager.getInstance().getRootElements(debug());
}
@Override
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
// No change when input changes
}
/**
* Return whether or not we are debugging. Check the system settings unless we
* are overriding them.
*
* @return boolean <code>true</code> if debug (system) jobs are being shown.
*/
public boolean debug() {
if (!canShowDebug) {
return false;
}
return ProgressViewUpdater.getSingleton().debug;
}
}