blob: 1d521e112c316a272897878cd9ac6086aeeb12e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.jaxb.eclipselink.core.internal.operations;
import org.eclipse.jpt.common.core.internal.operations.JptFileCreationDataModelProperties;
public interface OxmFileCreationDataModelProperties
extends JptFileCreationDataModelProperties {
/**
* Required, type {@link String}, identifies the version of the file to create
*/
String VERSION = "OxmFileCreationDataModelProperties.VERSION"; //$NON-NLS-1$
/**
* Required, type {@link String}, identifies the package name of the oxm file
*/
String PACKAGE_NAME = "OxmFileCreationDataModelProperties.PACKAGE_NAME"; //$NON-NLS-1$
}