blob: f27f9fde9f9e2154eacc7ac60ee06948eb8de1b0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.content.orm.resource;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jpt.core.internal.mappings.IEntity;
import org.eclipse.wst.common.internal.emf.resource.IDTranslator;
import org.eclipse.wst.common.internal.emf.resource.Translator;
public class TableTranslator extends AbstractTableTranslator
implements OrmXmlMapper
{
private IEntity entity;
public TableTranslator() {
super(ENTITY__TABLE, JPA_CORE_XML_PKG.getXmlEntityForXml_TableForXml());
}
protected IEntity getEntity() {
return this.entity;
}
void setEntity(IEntity entity) {
this.entity = entity;
}
@Override
public EObject createEMFObject(String nodeName, String readAheadName) {
return getEntity().getTable();
}
protected Translator[] createChildren() {
return new Translator[] {
IDTranslator.INSTANCE,
createNameTranslator(),
createCatalogTranslator(),
createSchemaTranslator(),
createUniqueConstraintTranslator(),
};
}
}