project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/internal/cpp/epoc/engine/model/ListStatementListConverter.java
changeset 0 fb279309251b
equal deleted inserted replaced
-1:000000000000 0:fb279309251b
       
     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 the License "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 * This interface is used in conversions of model objects into list statements across multiple
       
    16 * statements.
       
    17 *
       
    18 * @param <ElementType>
       
    19 * @param <ModelType>
       
    20 *
       
    21 */
       
    22 package com.nokia.carbide.internal.cpp.epoc.engine.model;
       
    23 
       
    24 import com.nokia.carbide.internal.api.cpp.epoc.engine.dom.IASTListHolder;
       
    25 import com.nokia.carbide.internal.api.cpp.epoc.engine.dom.IASTNode;
       
    26 public interface ListStatementListConverter<ElementType extends IASTNode, ModelType> 
       
    27 	extends ListConverter<ElementType, ModelType>, StatementListConverter<ElementType, ModelType> {
       
    28 	/**
       
    29 	 * Create a new statement holding elements of the list.
       
    30 	 * @return new statement
       
    31 	 */
       
    32 	IASTListHolder<ElementType> createNewListStatement();
       
    33 	
       
    34 
       
    35 	
       
    36 }