frameworkplugins/com.nokia.s60tools.sdk/src/com/nokia/s60tools/sdk/RVCTToolChainInfo.java
changeset 0 61163b28edca
equal deleted inserted replaced
-1:000000000000 0:61163b28edca
       
     1 /*
       
     2 * Copyright (c) 2006 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  
       
    19 package com.nokia.s60tools.sdk;
       
    20 
       
    21 /**
       
    22  * Stores information about single RVCT
       
    23  * (=RealView Compiler Tools) toolchain 
       
    24  * installation
       
    25  */
       
    26 public class RVCTToolChainInfo {
       
    27 	
       
    28 	/**
       
    29 	 * Toolchain installation directory location.
       
    30 	 */
       
    31 	private String rvctToolBinariesDirectory = null;
       
    32 	
       
    33 	/**
       
    34 	 * Toolchain version.
       
    35 	 */
       
    36 	private String rvctToolsVersion = null;
       
    37 	
       
    38 	/**
       
    39 	 * Default constructor.
       
    40 	 * Cannot be constructed outside of this package.
       
    41 	 */
       
    42 	RVCTToolChainInfo(){
       
    43 		rvctToolBinariesDirectory = new String(""); //$NON-NLS-1$
       
    44 		rvctToolsVersion = new String("");		 //$NON-NLS-1$
       
    45 	}
       
    46 
       
    47 	/**
       
    48 	 * Gets RVCT toolchain installation directory.
       
    49 	 * @return Returns the rvctToolBinariesDirectory.
       
    50 	 */
       
    51 	public String getRvctToolBinariesDirectory() {
       
    52 		return rvctToolBinariesDirectory;
       
    53 	}
       
    54 
       
    55 	/**
       
    56 	 * Sets RVCT toolchain installation directory. 
       
    57 	 * Setters cannot be used outside this package.
       
    58 	 * @param rvctToolBinariesDirectory The rvctToolBinariesDirectory to set.
       
    59 	 */
       
    60 	void setRvctToolBinariesDirectory(String rvctToolBinariesDirectory) {
       
    61 		this.rvctToolBinariesDirectory = rvctToolBinariesDirectory;
       
    62 	}
       
    63 
       
    64 	/**
       
    65 	 * Gets RVCT toolchain version.
       
    66 	 * @return Returns the rvctToolsVersion.
       
    67 	 */
       
    68 	public String getRvctToolsVersion() {
       
    69 		return rvctToolsVersion;
       
    70 	}
       
    71 
       
    72 	/**
       
    73 	 * Sets RVCT toolchain version.
       
    74 	 * Setters cannot be used outside this package.
       
    75 	 * @param rvctToolsVersion The rvctToolsVersion to set.
       
    76 	 */
       
    77 	void setRvctToolsVersion(String rvctToolsVersion) {
       
    78 		this.rvctToolsVersion = rvctToolsVersion;
       
    79 	}
       
    80 }