blob: bcb8309a036a6ca1fac7566f48443ec887cd2948 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 SpringSource 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:
* SpringSource
* Andrew Eisenberg (initial implementation)
*******************************************************************************/
package org.eclipse.contribution.jdt.cuprovider;
import org.eclipse.jdt.core.WorkingCopyOwner;
import org.eclipse.jdt.internal.core.CompilationUnit;
import org.eclipse.jdt.internal.core.PackageFragment;
public interface ICompilationUnitProvider {
public CompilationUnit create(PackageFragment parent, String name, WorkingCopyOwner owner);
}