Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/src/org/eclipse/jpt/jaxb/eclipselink/core/context/java/ELXmlInverseReferenceMapping.java')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/src/org/eclipse/jpt/jaxb/eclipselink/core/context/java/ELXmlInverseReferenceMapping.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/src/org/eclipse/jpt/jaxb/eclipselink/core/context/java/ELXmlInverseReferenceMapping.java b/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/src/org/eclipse/jpt/jaxb/eclipselink/core/context/java/ELXmlInverseReferenceMapping.java
deleted file mode 100644
index a9ea6091df..0000000000
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/src/org/eclipse/jpt/jaxb/eclipselink/core/context/java/ELXmlInverseReferenceMapping.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package org.eclipse.jpt.jaxb.eclipselink.core.context.java;
-
-import org.eclipse.jpt.jaxb.core.context.JaxbAttributeMapping;
-
-/**
- * Represents an EclipseLink XmlInverseReference attribute mapping in either
- * java annotations or oxm file.
- *
- * Provisional API: This interface is part of an interim API that is still
- * under development and expected to change significantly before reaching
- * stability. It is available at this early stage to solicit feedback from
- * pioneering adopters on the understanding that any code that uses this API
- * will almost certainly be broken (repeatedly) as the API evolves.
- *
- * @version 3.2
- * @since 3.2
- */
-public interface ELXmlInverseReferenceMapping
- extends JaxbAttributeMapping {
-
- // ***** mappedBy *****
-
- /**
- * String associated with changes to the mappedBy property
- */
- String MAPPED_BY_PROPERTY = "mappedBy"; ///$NON-NLS-1$
-
- /**
- * Return the mappedBy property value.
- * A null indicates it is not specified.
- */
- String getMappedBy();
-
- /**
- * Set the mappedBy property value.
- * Setting to null will unspecify it.
- */
- void setMappedBy(String mappedBy);
-}

Back to the top