package org.eclipse.modisco.kdm.data.dao; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.texo.server.store.BaseDao; import org.eclipse.modisco.kdm.data.ContentReference; import org.eclipse.modisco.kdm.data.DataModelPackage; /** * The Dao implementation for the model object '<em><b>ContentReference</b></em>'. * * @generated */ public class ContentReferenceDao extends BaseDao<ContentReference> { /** * @generated */ @Override public Class<ContentReference> getEntityClass() { return ContentReference.class; } /** * @generated */ @Override public EClass getEClass() { return DataModelPackage.INSTANCE.getContentReferenceEClass(); } }