blob: a3bd1285c383a18876fccdb27db8ad83e935c029 [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;
import java.util.Iterator;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jpt.core.internal.IMappingKeys;
import org.eclipse.jpt.core.internal.IPersistentAttribute;
import org.eclipse.jpt.core.internal.mappings.IMappedSuperclass;
import org.eclipse.jpt.core.internal.mappings.ITable;
import org.eclipse.jpt.utility.internal.iterators.EmptyIterator;
import org.eclipse.jpt.utility.internal.iterators.FilteringIterator;
import org.eclipse.jpt.utility.internal.iterators.TransformationIterator;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Xml Mapped Superclass</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.jpt.core.internal.content.orm.OrmPackage#getXmlMappedSuperclass()
* @model kind="class"
* @generated
*/
public class XmlMappedSuperclass extends XmlTypeMapping
implements IMappedSuperclass
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected XmlMappedSuperclass() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OrmPackage.Literals.XML_MAPPED_SUPERCLASS;
}
public String getKey() {
return IMappingKeys.MAPPED_SUPERCLASS_TYPE_MAPPING_KEY;
}
public boolean tableNameIsInvalid(String tableName) {
return false;
}
public Iterator<String> associatedTableNamesIncludingInherited() {
return EmptyIterator.instance();
}
public Iterator<ITable> associatedTables() {
return EmptyIterator.instance();
}
public Iterator<ITable> associatedTablesIncludingInherited() {
return EmptyIterator.instance();
}
public Iterator<String> overridableAttributeNames() {
return this.namesOf(this.overridableAttributes());
}
public Iterator<IPersistentAttribute> overridableAttributes() {
return new FilteringIterator<IPersistentAttribute>(this.getPersistentType().attributes()) {
@Override
protected boolean accept(Object o) {
return ((IPersistentAttribute) o).isOverridableAttribute();
}
};
}
public Iterator<String> overridableAssociationNames() {
return this.namesOf(this.overridableAssociations());
}
public Iterator<IPersistentAttribute> overridableAssociations() {
return new FilteringIterator<IPersistentAttribute>(this.getPersistentType().attributes()) {
@Override
protected boolean accept(Object o) {
return ((IPersistentAttribute) o).isOverridableAssociation();
}
};
}
private Iterator<String> namesOf(Iterator<IPersistentAttribute> attributes) {
return new TransformationIterator<IPersistentAttribute, String>(attributes) {
@Override
protected String transform(IPersistentAttribute attribute) {
return attribute.getName();
}
};
}
@Override
public int xmlSequence() {
return 0;
}
}