imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/model/iContent/IContentFactory.java
changeset 0 61163b28edca
equal deleted inserted replaced
-1:000000000000 0:61163b28edca
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 package com.nokia.s60tools.imaker.internal.model.iContent;
       
    18 
       
    19 import org.eclipse.emf.ecore.EFactory;
       
    20 
       
    21 /**
       
    22  * <!-- begin-user-doc -->
       
    23  * The <b>Factory</b> for the model.
       
    24  * It provides a create method for each non-abstract class of the model.
       
    25  * <!-- end-user-doc -->
       
    26  * @see com.nokia.s60tools.imaker.internal.model.iContent.IContentPackage
       
    27  * @generated
       
    28  */
       
    29 public interface IContentFactory extends EFactory {
       
    30 	/**
       
    31 	 * The singleton instance of the factory.
       
    32 	 * <!-- begin-user-doc -->
       
    33 	 * <!-- end-user-doc -->
       
    34 	 * @generated
       
    35 	 */
       
    36 	IContentFactory eINSTANCE = com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentFactoryImpl.init();
       
    37 
       
    38 	/**
       
    39 	 * Returns a new object of class '<em>Image Content</em>'.
       
    40 	 * <!-- begin-user-doc -->
       
    41 	 * <!-- end-user-doc -->
       
    42 	 * @return a new object of class '<em>Image Content</em>'.
       
    43 	 * @generated
       
    44 	 */
       
    45 	ImageContent createImageContent();
       
    46 
       
    47 	/**
       
    48 	 * Returns a new object of class '<em>Iby Entry</em>'.
       
    49 	 * <!-- begin-user-doc -->
       
    50 	 * <!-- end-user-doc -->
       
    51 	 * @return a new object of class '<em>Iby Entry</em>'.
       
    52 	 * @generated
       
    53 	 */
       
    54 	IbyEntry createIbyEntry();
       
    55 
       
    56 	/**
       
    57 	 * Returns the package supported by this factory.
       
    58 	 * <!-- begin-user-doc -->
       
    59 	 * <!-- end-user-doc -->
       
    60 	 * @return the package supported by this factory.
       
    61 	 * @generated
       
    62 	 */
       
    63 	IContentPackage getIContentPackage();
       
    64 	
       
    65 	IbyEntry createEntryFromString(String initialValue);
       
    66 } //IContentFactory