blob: 63f2b4ae9954de558331b577444357f171f46785 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.context.orm;
import org.eclipse.jpt.core.context.java.JavaTransientMapping;
import org.eclipse.jpt.core.context.orm.OrmTypeMapping;
import org.eclipse.jpt.core.resource.orm.XmlTransient;
import org.eclipse.jpt.core.utility.TextRange;
/**
* VirtualTransient is an implementation of Transient used when there is
* no tag in the orm.xml and an underlying javaTransientMapping exists.
*/
public class VirtualXmlTransient extends XmlTransient
{
protected OrmTypeMapping ormTypeMapping;
protected final JavaTransientMapping javaAttributeMapping;
protected final VirtualXmlAttributeMapping virtualXmlAttributeMapping;
public VirtualXmlTransient(OrmTypeMapping ormTypeMapping, JavaTransientMapping javaTransientMapping) {
super();
this.ormTypeMapping = ormTypeMapping;
this.javaAttributeMapping = javaTransientMapping;
this.virtualXmlAttributeMapping = new VirtualXmlAttributeMapping(ormTypeMapping, javaTransientMapping);
}
protected boolean isOrmMetadataComplete() {
return this.ormTypeMapping.isMetadataComplete();
}
@Override
public String getMappingKey() {
return this.virtualXmlAttributeMapping.getMappingKey();
}
@Override
public String getName() {
return this.virtualXmlAttributeMapping.getName();
}
@Override
public void setName(String newName) {
this.virtualXmlAttributeMapping.setName(newName);
}
@Override
public TextRange getNameTextRange() {
return this.virtualXmlAttributeMapping.getNameTextRange();
}
}