blob: 9a8c9c58f5423fca1cef5f101c28cc9ebaccc6c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 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.bpel.ui.details.providers;
import java.util.List;
import org.eclipse.bpel.model.Variable;
import org.eclipse.bpel.ui.util.BPELUtil;
import org.eclipse.emf.ecore.EObject;
/**
* Content provider for variables.
*
* Provides all the Variables visible in a given context.
*/
public class VariableContentProvider extends AbstractContentProvider {
@Override
public void collectElements(Object input, List list) {
Variable[] vars = BPELUtil.getVisibleVariables((EObject)input);
for (int i = 0; i< vars.length; i++) {
list.add(vars[i]);
}
}
}