blob: 056696a4bafbfe7245729b2f53d3d2980e77ba29 [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.context.XmlElementRefs;
import org.eclipse.jpt.jaxb.core.context.java.JavaContextNode;
import org.eclipse.jpt.jaxb.core.internal.context.java.GenericJavaXmlElementRefs;
import org.eclipse.jpt.jaxb.core.internal.context.java.GenericJavaXmlElementRefsMapping;
import org.eclipse.jpt.jaxb.core.resource.java.XmlElementRefAnnotation;
public class ELJavaXmlElementRefsMapping
extends GenericJavaXmlElementRefsMapping {
public ELJavaXmlElementRefsMapping(JaxbPersistentAttribute parent) {
super(parent);
}
@Override
protected XmlElementRefs buildXmlElementRefs() {
return new GenericJavaXmlElementRefs(this, new XmlElementRefsContext());
}
protected class XmlElementRefsContext
extends GenericJavaXmlElementRefsMapping.XmlElementRefsContext {
@Override
public XmlElementRef buildXmlElementRef(JavaContextNode parent, XmlElementRefAnnotation annotation) {
return new ELJavaXmlElementRef(parent, new GenericJavaXmlElementRefsMapping.XmlElementRefContext(annotation));
}
}
}