testdev/ite/src/com.nokia.testfw.codegen/src/com/nokia/testfw/codegen/model/IMethodNode.java
changeset 1 96906a986c3b
equal deleted inserted replaced
0:f1112f777ce9 1:96906a986c3b
       
     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.testfw.codegen.model;
       
    18 
       
    19 import java.util.List;
       
    20 
       
    21 public interface IMethodNode extends INode {
       
    22 
       
    23 	// Get visibility: public=0, protected=1, private=2
       
    24 	public int getVisibility();
       
    25 	
       
    26 	// Get full name
       
    27 	public String getFullName();
       
    28 
       
    29 	// Get normalised Name
       
    30 	public String getNormalisedName();
       
    31 
       
    32 	// Get parameters
       
    33 	public List<String[]> getParameters();
       
    34 
       
    35 	// Asynchronous flag
       
    36 	public boolean isAsync();
       
    37 
       
    38 	// Constructor flag
       
    39 	public boolean isConstructor();
       
    40 
       
    41 	// Destructor flag
       
    42 	public boolean isDestructor();
       
    43 
       
    44 	// Operator flag
       
    45 	public boolean isOperator();
       
    46 
       
    47 	// PureVirtual flag
       
    48 	public boolean isPureVirtual();
       
    49 
       
    50 	// Static flag
       
    51 	public boolean isStatic();
       
    52 
       
    53 	// Asynchronous flag
       
    54 	public boolean isInline();
       
    55 
       
    56 	// Virtual flag
       
    57 	public boolean isVirtual();
       
    58 	
       
    59 	// Const flag
       
    60 	public boolean isConst();
       
    61 }