blob: 3dbaf95314857c3f7b99f0423a7368b5b01d6e8b [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;
/**
* This model factory should be used to
* create new instances of plugin.jars model
* objects.
*/
public interface IBuildModelFactory {
/**
* Creates a new build entry with
* the provided name.
* @return a new build.properties entry instance
*/
IBuildEntry createEntry(String name);
}