blob: 6d25a1a95ed80051964595e9970f0bb7db9b4f16 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.internal.xr.sxf;
// Javse imports
// Java extension imports
// EclipseLink imports
public class SimpleXMLFormat {
public static final String DEFAULT_SIMPLE_XML_FORMAT_TAG =
"simple-xml-format";
public static final String DEFAULT_SIMPLE_XML_TAG =
"simple-xml";
private String simpleXMLFormatTag;
private String xmlTag;
public String getSimpleXMLFormatTag() {
return simpleXMLFormatTag;
}
public void setSimpleXMLFormatTag(String simpleXMLFormatTag) {
this.simpleXMLFormatTag = simpleXMLFormatTag;
}
public String getXMLTag() {
return xmlTag;
}
public void setXMLTag(String xmlTag) {
this.xmlTag = xmlTag;
}
}