Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4c02e173d848fd73f3f8880533c42b95b60385e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
* 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;
	}
}

Back to the top