/******************************************************************************* * Copyright (c) 2003, 2006 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.wst.common.componentcore.internal; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * Provides a root object to store and manage the * {@see org.eclipse.wst.common.modulecore.WorkbenchComponent}s. * *

* See the package overview for an overview of the model components . *

* * *

* The following features are supported: *

*

* * @see org.eclipse.wst.common.componentcore.ComponentcorePackage#getProjectComponents() * @model * @generated */ public interface ProjectComponents extends EObject { /** * Returns the value of the 'Project Name' attribute. * The default value is "". * *

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

* * @return the value of the 'Project Name' attribute. * @see #setProjectName(String) * @see org.eclipse.wst.common.componentcore.ComponentcorePackage#getProjectComponents_ProjectName() * @model default="" required="true" * @generated */ String getProjectName(); /** * Sets the value of the '{@link org.eclipse.wst.common.componentcore.internal.ProjectComponents#getProjectName Project Name}' attribute. * * @param value the new value of the 'Project Name' attribute. * @see #getProjectName() * @generated */ void setProjectName(String value); /** * Returns the value of the 'Components' containment reference list. * The list contents are of type {@link org.eclipse.wst.common.componentcore.internal.WorkbenchComponent}. * *

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

* * @return the value of the 'Components' containment reference list. * @see org.eclipse.wst.common.componentcore.ComponentcorePackage#getProjectComponents_Components() * @model type="org.eclipse.wst.common.componentcore.internal.WorkbenchComponent" containment="true" * @generated */ EList getComponents(); /** * Returns the value of the 'Version' attribute. * *

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

* * @return the value of the 'Version' attribute. * @see #setVersion(String) * @see org.eclipse.wst.common.componentcore.ComponentcorePackage#getProjectComponents_Version() * @model required="true" * @generated */ String getVersion(); /** * Sets the value of the '{@link org.eclipse.wst.common.componentcore.internal.ProjectComponents#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #getVersion() * @generated */ void setVersion(String value); public WorkbenchComponent findWorkbenchModule(String aDeployName); } // ProjectComponents