blob: c6bbe518b01563d348519b230bd7724b96722bed [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: WorkbenchModuleResource.java,v 1.4 2005/01/26 16:48:35 cbridgha Exp $
*/
package org.eclipse.wst.common.modulecore;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Workbench Module Resource</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.wst.common.modulecore.WorkbenchModuleResource#getSourcePath <em>Source Path</em>}</li>
* <li>{@link org.eclipse.wst.common.modulecore.WorkbenchModuleResource#getDeployedPath <em>Deployed Path</em>}</li>
* <li>{@link org.eclipse.wst.common.modulecore.WorkbenchModuleResource#getExclusions <em>Exclusions</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.wst.common.modulecore.ModuleCorePackage#getWorkbenchModuleResource()
* @model
* @generated
*/
public interface WorkbenchModuleResource extends EObject {
/**
* Returns the value of the '<em><b>Source Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source Path</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source Path</em>' attribute.
* @see #setSourcePath(URI)
* @see org.eclipse.wst.common.modulecore.ModuleCorePackage#getWorkbenchModuleResource_SourcePath()
* @model dataType="org.eclipse.wst.common.modulecore.URI"
* @generated
*/
URI getSourcePath();
/**
* Sets the value of the '{@link org.eclipse.wst.common.modulecore.WorkbenchModuleResource#getSourcePath <em>Source Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source Path</em>' attribute.
* @see #getSourcePath()
* @generated
*/
void setSourcePath(URI value);
/**
* Returns the value of the '<em><b>Deployed Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Deployed Path</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Deployed Path</em>' attribute.
* @see #setDeployedPath(URI)
* @see org.eclipse.wst.common.modulecore.ModuleCorePackage#getWorkbenchModuleResource_DeployedPath()
* @model dataType="org.eclipse.wst.common.modulecore.URI"
* @generated
*/
URI getDeployedPath();
/**
* Sets the value of the '{@link org.eclipse.wst.common.modulecore.WorkbenchModuleResource#getDeployedPath <em>Deployed Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Deployed Path</em>' attribute.
* @see #getDeployedPath()
* @generated
*/
void setDeployedPath(URI value);
/**
* Returns the value of the '<em><b>Exclusions</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.common.util.URI}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Exclusions</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Exclusions</em>' attribute list.
* @see org.eclipse.wst.common.modulecore.ModuleCorePackage#getWorkbenchModuleResource_Exclusions()
* @model type="org.eclipse.emf.common.util.URI" dataType="org.eclipse.wst.common.modulecore.URI"
* @generated
*/
EList getExclusions();
} // WorkbenchModuleResource