Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5c635c98c813e23e0551d9548b01af709e10523f (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
/*******************************************************************************
 *  Copyright (c) 2009, 2011  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.common.core.internal.operations;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IPath;

public interface JptFileCreationDataModelProperties
{
	/**
	 * Optional, type {@link IProject}, gives a clue as to the default container path
	 */
	String PROJECT = "JptFileCreationDataModelProperties.PROJECT"; //$NON-NLS-1$

	/**
	 * Required, type {@link IPath}, identifies the full path to the container in which 
	 * the file should be created
	 */
	String CONTAINER_PATH = "JptFileCreationDataModelProperties.CONTAINER_PATH"; //$NON-NLS-1$

	/**
	 * Required, type {@link String}, identifies the file name
	 */
	String FILE_NAME = "JptFileCreationDataModelProperties.FILE_NAME"; //$NON-NLS-1$
}

Back to the top