/** * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) and others. * 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: * Andre Dietisheim - initial API and implementation * Eike Stepper - maintenance */ package org.eclipse.emf.cdo.defs; import org.eclipse.net4j.util.defs.Def; /** * A representation of the model object 'CDO Resource Def'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOResourceDef() * @model * @generated */ public interface CDOResourceDef extends Def { /** * Returns the value of the 'Cdo Transaction' reference. * *

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

* * @return the value of the 'Cdo Transaction' reference. * @see #setCdoTransaction(CDOTransactionDef) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOResourceDef_CdoTransaction() * @model required="true" * @generated */ CDOTransactionDef getCdoTransaction(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOResourceDef#getCdoTransaction Cdo Transaction}' reference. * * @param value the new value of the 'Cdo Transaction' reference. * @see #getCdoTransaction() * @generated */ void setCdoTransaction(CDOTransactionDef value); /** * Returns the value of the 'Resource Mode' attribute. * The default value is "null". * The literals are from the enumeration {@link org.eclipse.emf.cdo.defs.ResourceMode}. * *

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

* * @return the value of the 'Resource Mode' attribute. * @see org.eclipse.emf.cdo.defs.ResourceMode * @see #setResourceMode(ResourceMode) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOResourceDef_ResourceMode() * @model default="null" required="true" * @generated */ ResourceMode getResourceMode(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOResourceDef#getResourceMode Resource Mode}' attribute. * * @param value the new value of the 'Resource Mode' attribute. * @see org.eclipse.emf.cdo.defs.ResourceMode * @see #getResourceMode() * @generated */ void setResourceMode(ResourceMode value); /** * Returns the value of the 'Path' attribute. * *

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

* * @return the value of the 'Path' attribute. * @see #setPath(String) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOResourceDef_Path() * @model required="true" * @generated */ String getPath(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOResourceDef#getPath Path}' attribute. * * @param value * the new value of the 'Path' attribute. * @see #getPath() * @generated */ void setPath(String value); } // CDOResourceDef