blob: 3e7c5f9659b58d5b9d8f92587bd9e30a3c77bca7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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.jpa.eclipselink.core.internal.context.java;
import java.util.List;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.utility.internal.iterables.CompositeIterable;
import org.eclipse.jpt.jpa.core.context.java.JavaConverter;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jpa.core.internal.context.java.AbstractJavaIdMapping;
import org.eclipse.jpt.jpa.eclipselink.core.context.EclipseLinkIdMapping;
import org.eclipse.jpt.jpa.eclipselink.core.context.EclipseLinkMutable;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
public class JavaEclipseLinkIdMapping
extends AbstractJavaIdMapping
implements EclipseLinkIdMapping
{
protected final JavaEclipseLinkMutable mutable;
public JavaEclipseLinkIdMapping(JavaPersistentAttribute parent) {
super(parent);
this.mutable = new JavaEclipseLinkMutable(this);
}
// ********** synchronize/update **********
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
this.mutable.synchronizeWithResourceModel();
}
@Override
public void update() {
super.update();
this.mutable.update();
}
// ********** mutable **********
public EclipseLinkMutable getMutable() {
return this.mutable;
}
// ********** converter adapters **********
/**
* put the EclipseLink convert adapter first - this is the order EclipseLink searches
*/
@Override
protected Iterable<JavaConverter.Adapter> getConverterAdapters() {
return new CompositeIterable<JavaConverter.Adapter>(JavaEclipseLinkConvert.Adapter.instance(), super.getConverterAdapters());
}
// ********** validation **********
@Override
public void validate(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
super.validate(messages, reporter, astRoot);
this.mutable.validate(messages, reporter, astRoot);
}
}