blob: f4fca14dc1a06df994402daac2d30333a166eb4b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 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.eclipselink.core.internal.context.java;
import org.eclipse.jpt.jaxb.core.context.JaxbPersistentAttribute;
import org.eclipse.jpt.jaxb.core.context.XmlElementRef;
import org.eclipse.jpt.jaxb.core.internal.context.java.GenericJavaXmlElementRefMapping;
public class ELJavaXmlElementRefMapping
extends GenericJavaXmlElementRefMapping {
public ELJavaXmlElementRefMapping(JaxbPersistentAttribute parent) {
super(parent);
}
@Override
protected XmlElementRef buildXmlElementRef() {
return new ELJavaXmlElementRef(this, new GenericJavaXmlElementRefMapping.XmlElementRefContext());
}
}