/******************************************************************************* * Copyright (c) 2008, 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.eclipselink.core.resource.orm; import org.eclipse.jpt.core.resource.xml.JpaEObject; /** * * * A representation of the model object 'Xml Cache Holder'. * * Provisional API: This interface is part of an interim API that is still * under development and expected to change significantly before reaching * stability. It is available at this early stage to solicit feedback from * pioneering adopters on the understanding that any code that uses this API * will almost certainly be broken (repeatedly) as the API evolves. * * @version 2.1 * @since 2.1 * * * *

* The following features are supported: *

*

* * @see org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmPackage#getXmlCacheHolder() * @model kind="class" interface="true" abstract="true" * @extends JpaEObject * @generated */ public interface XmlCacheHolder extends JpaEObject { /** * Returns the value of the 'Cache' containment reference. * *

* If the meaning of the 'Cache' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Cache' containment reference. * @see #setCache(XmlCache) * @see org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmPackage#getXmlCacheHolder_Cache() * @model containment="true" * @generated */ XmlCache getCache(); /** * Sets the value of the '{@link org.eclipse.jpt.eclipselink.core.resource.orm.XmlCacheHolder#getCache Cache}' containment reference. * * * @param value the new value of the 'Cache' containment reference. * @see #getCache() * @generated */ void setCache(XmlCache value); /** * Returns the value of the 'Existence Checking' attribute. * The default value is "". * The literals are from the enumeration {@link org.eclipse.jpt.eclipselink.core.resource.orm.ExistenceType}. * *

* If the meaning of the 'Existence Checking' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Existence Checking' attribute. * @see org.eclipse.jpt.eclipselink.core.resource.orm.ExistenceType * @see #setExistenceChecking(ExistenceType) * @see org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmPackage#getXmlCacheHolder_ExistenceChecking() * @model default="" * @generated */ ExistenceType getExistenceChecking(); /** * Sets the value of the '{@link org.eclipse.jpt.eclipselink.core.resource.orm.XmlCacheHolder#getExistenceChecking Existence Checking}' attribute. * * * @param value the new value of the 'Existence Checking' attribute. * @see org.eclipse.jpt.eclipselink.core.resource.orm.ExistenceType * @see #getExistenceChecking() * @generated */ void setExistenceChecking(ExistenceType value); } // XmlCacheHolder