blob: ade064eea61b865d4af07c737c7d993cb9a5927c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.core.internal.jpa2.context.orm;
import org.eclipse.jpt.core.context.java.JavaTransientMapping;
import org.eclipse.jpt.core.context.orm.OrmTypeMapping;
import org.eclipse.jpt.core.internal.context.orm.VirtualXmlTransient;
import org.eclipse.jpt.core.resource.orm.AccessType;
import org.eclipse.jpt.core.resource.orm.XmlTransient;
import org.eclipse.jpt.core.utility.TextRange;
/**
* VirtualBasic is an implementation of Basic used when there is
* no tag in the orm.xml and an underlying javaBasicMapping exists.
*/
public class VirtualXmlTransient2_0 extends XmlTransient
{
protected OrmTypeMapping ormTypeMapping;
protected final JavaTransientMapping javaAttributeMapping;
protected final VirtualXmlTransient virtualXmlTransient;
public VirtualXmlTransient2_0(OrmTypeMapping ormTypeMapping, JavaTransientMapping javaTransientMapping) {
super();
this.ormTypeMapping = ormTypeMapping;
this.javaAttributeMapping = javaTransientMapping;
this.virtualXmlTransient = new VirtualXmlTransient(ormTypeMapping, javaTransientMapping);
}
protected boolean isOrmMetadataComplete() {
return this.ormTypeMapping.isMetadataComplete();
}
@Override
public String getMappingKey() {
return this.virtualXmlTransient.getMappingKey();
}
@Override
public String getName() {
return this.virtualXmlTransient.getName();
}
@Override
public void setName(String newName) {
this.virtualXmlTransient.setName(newName);
}
@Override
public TextRange getNameTextRange() {
return this.virtualXmlTransient.getNameTextRange();
}
@Override
public AccessType getAccess() {
return org.eclipse.jpt.core.context.AccessType.toOrmResourceModel(this.javaAttributeMapping.getPersistentAttribute().getAccess());
}
@Override
public void setAccess(AccessType value) {
throw new UnsupportedOperationException("cannot set values on a virtual mapping"); //$NON-NLS-1$
}
}