configtool/com.nokia.s60ct.genconfml/src/gcmodel/File.java
changeset 0 30eb2d538f02
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configtool/com.nokia.s60ct.genconfml/src/gcmodel/File.java	Thu Mar 11 18:39:02 2010 +0200
@@ -0,0 +1,191 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+package gcmodel;
+
+import org.eclipse.emf.common.util.EList;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>File</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ *   <li>{@link gcmodel.File#getSettings <em>Settings</em>}</li>
+ *   <li>{@link gcmodel.File#getTemplate <em>Template</em>}</li>
+ *   <li>{@link gcmodel.File#getName <em>Name</em>}</li>
+ *   <li>{@link gcmodel.File#getFolder <em>Folder</em>}</li>
+ *   <li>{@link gcmodel.File#getParent <em>Parent</em>}</li>
+ *   <li>{@link gcmodel.File#getTarget <em>Target</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see gcmodel.GcmodelPackage#getFile()
+ * @model
+ * @generated
+ */
+public interface File extends EObject {
+	/**
+	 * Returns the value of the '<em><b>Settings</b></em>' containment reference list.
+	 * The list contents are of type {@link gcmodel.Setting}.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>Settings</em>' containment reference list isn't clear,
+	 * there really should be more of a description here...
+	 * </p>
+	 * <!-- end-user-doc -->
+	 * @return the value of the '<em>Settings</em>' containment reference list.
+	 * @see gcmodel.GcmodelPackage#getFile_Settings()
+	 * @model containment="true"
+	 * @generated
+	 */
+	EList<Setting> getSettings();
+
+	/**
+	 * Returns the value of the '<em><b>Template</b></em>' attribute.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>Template</em>' attribute isn't clear,
+	 * there really should be more of a description here...
+	 * </p>
+	 * <!-- end-user-doc -->
+	 * @return the value of the '<em>Template</em>' attribute.
+	 * @see #setTemplate(String)
+	 * @see gcmodel.GcmodelPackage#getFile_Template()
+	 * @model transient="true"
+	 * @generated
+	 */
+	String getTemplate();
+
+	/**
+	 * Sets the value of the '{@link gcmodel.File#getTemplate <em>Template</em>}' attribute.
+	 * <!-- begin-user-doc -->
+	 * <!-- end-user-doc -->
+	 * @param value the new value of the '<em>Template</em>' attribute.
+	 * @see #getTemplate()
+	 * @generated
+	 */
+	void setTemplate(String value);
+
+	/**
+	 * Returns the value of the '<em><b>Name</b></em>' attribute.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>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>Name</em>' attribute.
+	 * @see #setName(String)
+	 * @see gcmodel.GcmodelPackage#getFile_Name()
+	 * @model
+	 * @generated
+	 */
+	String getName();
+
+	/**
+	 * Sets the value of the '{@link gcmodel.File#getName <em>Name</em>}' attribute.
+	 * <!-- begin-user-doc -->
+	 * <!-- end-user-doc -->
+	 * @param value the new value of the '<em>Name</em>' attribute.
+	 * @see #getName()
+	 * @generated
+	 */
+	void setName(String value);
+
+	/**
+	 * Returns the value of the '<em><b>Folder</b></em>' attribute.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>Folder</em>' attribute isn't clear,
+	 * there really should be more of a description here...
+	 * </p>
+	 * <!-- end-user-doc -->
+	 * @return the value of the '<em>Folder</em>' attribute.
+	 * @see #setFolder(String)
+	 * @see gcmodel.GcmodelPackage#getFile_Folder()
+	 * @model transient="true"
+	 * @generated
+	 */
+	String getFolder();
+
+	/**
+	 * Sets the value of the '{@link gcmodel.File#getFolder <em>Folder</em>}' attribute.
+	 * <!-- begin-user-doc -->
+	 * <!-- end-user-doc -->
+	 * @param value the new value of the '<em>Folder</em>' attribute.
+	 * @see #getFolder()
+	 * @generated
+	 */
+	void setFolder(String value);
+
+	/**
+	 * Returns the value of the '<em><b>Parent</b></em>' attribute.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>Parent</em>' attribute isn't clear,
+	 * there really should be more of a description here...
+	 * </p>
+	 * <!-- end-user-doc -->
+	 * @return the value of the '<em>Parent</em>' attribute.
+	 * @see #setParent(String)
+	 * @see gcmodel.GcmodelPackage#getFile_Parent()
+	 * @model
+	 * @generated
+	 */
+	String getParent();
+
+	/**
+	 * Sets the value of the '{@link gcmodel.File#getParent <em>Parent</em>}' attribute.
+	 * <!-- begin-user-doc -->
+	 * <!-- end-user-doc -->
+	 * @param value the new value of the '<em>Parent</em>' attribute.
+	 * @see #getParent()
+	 * @generated
+	 */
+	void setParent(String value);
+
+	/**
+	 * Returns the value of the '<em><b>Target</b></em>' attribute.
+	 * <!-- begin-user-doc -->
+	 * <p>
+	 * If the meaning of the '<em>Target</em>' attribute isn't clear,
+	 * there really should be more of a description here...
+	 * </p>
+	 * <!-- end-user-doc -->
+	 * @return the value of the '<em>Target</em>' attribute.
+	 * @see #setTarget(String)
+	 * @see gcmodel.GcmodelPackage#getFile_Target()
+	 * @model
+	 * @generated
+	 */
+	String getTarget();
+
+	/**
+	 * Sets the value of the '{@link gcmodel.File#getTarget <em>Target</em>}' attribute.
+	 * <!-- begin-user-doc -->
+	 * <!-- end-user-doc -->
+	 * @param value the new value of the '<em>Target</em>' attribute.
+	 * @see #getTarget()
+	 * @generated
+	 */
+	void setTarget(String value);
+
+} // File