blob: 31e940b6543ab8702f36b7ed07fd9a6f4fb86b81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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 API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.core.builders;
import org.eclipse.pde.core.plugin.IPluginBase;
public class DependencyLoop {
private IPluginBase[] members;
private String name;
public IPluginBase[] getMembers() {
return members;
}
void setMembers(IPluginBase[] members) {
this.members = members;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String toString() {
return name;
}
}