blob: 6ab665dd6314341ae440ca41604273f2cb909874 [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.text.build;
import org.eclipse.pde.core.build.IBuildEntry;
import org.eclipse.pde.core.build.IBuildModel;
import org.eclipse.pde.core.build.IBuildModelFactory;
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) {
return new BuildEntry(name, fModel);
}
}