blob: 4c02e173d848fd73f3f8880533c42b95b60385e8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Oracle. 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:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal.operations;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IProject;
import org.eclipse.jpt.core.internal.operations.PersistenceFileCreationDataModelProvider;
/**
* SchemaFileCreationDataModelProvider
*/
public class SchemaFileCreationDataModelProvider extends PersistenceFileCreationDataModelProvider
{
@Override
protected String getDefaultFileName() {
if(this.getProject() == null) {
return null;
}
return this.getProject().getName();
}
/**
* Return a best guess source location for the for the specified project
*/
@Override
protected IContainer getDefaultContainer() {
IContainer defaultContainer = super.getDefaultContainer();
if(defaultContainer != null) {
IProject project = (IProject) this.model.getProperty(PROJECT);
return defaultContainer.getFolder(project.getLocation());
}
return null;
}
}