blob: d6ede0928b352ee81da6080876a94bf0389e3f1a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.ecp.xmiworkspace.structure;
import org.eclipse.emf.ecp.common.model.workSpaceModel.ECPProject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>XMIECP Project</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.ecp.xmiworkspace.structure.XMIECPProject#getProjectName <em>Project Name</em>}</li>
* <li>{@link org.eclipse.emf.ecp.xmiworkspace.structure.XMIECPProject#getProjectDescription <em>Project Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.ecp.xmiworkspace.structure.StructurePackage#getXMIECPProject()
* @model interface="true" abstract="true"
* @generated
*/
public interface XMIECPProject extends ECPProject {
/**
* Returns the value of the '<em><b>Project Name</b></em>' attribute.
* The default value is <code>"\"New Project\""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Project Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Project Name</em>' attribute.
* @see #setProjectName(String)
* @see org.eclipse.emf.ecp.xmiworkspace.structure.StructurePackage#getXMIECPProject_ProjectName()
* @model default="\"New Project\""
* @generated
*/
String getProjectName();
/**
* Sets the value of the '{@link org.eclipse.emf.ecp.xmiworkspace.structure.XMIECPProject#getProjectName <em>Project Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Project Name</em>' attribute.
* @see #getProjectName()
* @generated
*/
void setProjectName(String value);
/**
* Returns the value of the '<em><b>Project Description</b></em>' attribute.
* The default value is <code>"\"Empty new Project\""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Project Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Project Description</em>' attribute.
* @see #setProjectDescription(String)
* @see org.eclipse.emf.ecp.xmiworkspace.structure.StructurePackage#getXMIECPProject_ProjectDescription()
* @model default="\"Empty new Project\""
* @generated
*/
String getProjectDescription();
/**
* Sets the value of the '{@link org.eclipse.emf.ecp.xmiworkspace.structure.XMIECPProject#getProjectDescription <em>Project Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Project Description</em>' attribute.
* @see #getProjectDescription()
* @generated
*/
void setProjectDescription(String value);
} // XMIECPProject