blob: cc94b380fc774087af4c6cb95c9b16f11aff89b9 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.wtp.releng.tools.component.use;
import java.util.ArrayList;
import java.util.List;
public class Source
{
private String name;
private List classUses;
/**
* @return Returns the name.
*/
public String getName()
{
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name)
{
this.name = name;
}
/**
* @return Returns the classUses.
*/
public List getClassUses()
{
if (classUses == null)
classUses = new ArrayList(1);
return classUses;
}
}