srcanaapps/depexplorer/com.nokia.s60tools.appdep/src/com/nokia/s60tools/appdep/core/model/ExportFunctionData.java
changeset 0 a02c979e8dfd
equal deleted inserted replaced
-1:000000000000 0:a02c979e8dfd
       
     1 /*
       
     2 * Copyright (c) 2008 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 
       
    18 package com.nokia.s60tools.appdep.core.model;
       
    19 
       
    20 import com.nokia.s60tools.appdep.exceptions.ZeroFunctionOrdinalException;
       
    21 
       
    22 /**
       
    23  * Stores the data for a single exported
       
    24  * function.
       
    25  */
       
    26 public class ExportFunctionData extends AbstractFunctionData{
       
    27 	
       
    28 	//
       
    29 	// NOTE: Column indeces must start from zero (0) and
       
    30 	// the columns must be added in ascending numeric
       
    31 	// order.
       
    32 	//
       
    33 	public static final int ORDINAL_COLUMN_INDEX = 0; // This is used in UI
       
    34 	public static final int NAME_COLUMN_INDEX = 1; // This is used in UI
       
    35 
       
    36 	/**
       
    37 	 * Constructor.
       
    38 	 * @param functionOrdinal Function ordinal (1..n when converted into integer).
       
    39 	 * @param functionName Function name.
       
    40 	 * @throws IllegalArgumentException 
       
    41 	 * @throws ZeroFunctionOrdinalException 
       
    42 	 */
       
    43 	public ExportFunctionData(String functionOrdinal, String functionName) throws IllegalArgumentException, ZeroFunctionOrdinalException{
       
    44 		super(functionOrdinal, functionName);
       
    45 	}
       
    46 	
       
    47 }