blob: 9e0bc8c4f3662dcbc04d4290486fc31a3cd8a599 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ajdt.internal.buildconfig.editor.model;
public class BuildModelFactory implements IBuildModelFactory {
private IBuildModel fModel;
public BuildModelFactory(IBuildModel model) {
fModel = model;
}
/* (non-Javadoc)
* @see org.eclipse.pde.core.build.IBuildModelFactory#createEntry(java.lang.String)
*/
public IBuildEntry createEntry(String name) {
BuildEntry entry = new BuildEntry();
entry.setName(name);
entry.setModel(fModel);
return entry;
}
}