blob: 7c99f4c4681eef1ac2ed3dbab2e2bbb2ee4bd3e4 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.library.services;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.epf.uma.MethodElement;
/**
* This class holds all the variable elements (contributors, replacers) of the
* specified base element. and provide methods to calculate the final output.
*
* @author Jinhua Xi
* @since 1.0
*/
public class VariableElementList {
private List variables = new ArrayList();
/**
* constructor
* @param baseElement MethodElement
*/
public VariableElementList(MethodElement baseElement) {
}
/**
* add a variability element
*
* @param variable MethodElement
*/
public void addVariableElement(MethodElement variable) {
if (!variables.contains(variable)) {
variables.add(variable);
}
}
/**
* remove a variability element
* @param variable MethodElement
*/
public void removeVariableElement(MethodElement variable) {
if (variables.contains(variable)) {
variables.remove(variable);
}
}
/**
* get all variability elements
* @return Object[]
*/
public Object[] getVariableElements() {
return variables.toArray();
}
/**
* get the number of variability elements
* @return int
*/
public int size() {
return variables.size();
}
}