trace/traceviewer/com.nokia.trace.dictionary/src/com/nokia/trace/dictionary/model/Path.java
changeset 11 5b9d4d8641ce
equal deleted inserted replaced
10:ed1c9f64298a 11:5b9d4d8641ce
       
     1 /*
       
     2  * Copyright (c) 2007-2010 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  * Path
       
    17  *
       
    18  */
       
    19 package com.nokia.trace.dictionary.model;
       
    20 
       
    21 /**
       
    22  * Path
       
    23  * 
       
    24  */
       
    25 public class Path {
       
    26 
       
    27 	/**
       
    28 	 * File path
       
    29 	 */
       
    30 	private String filePath;
       
    31 
       
    32 	/**
       
    33 	 * Constructor
       
    34 	 * 
       
    35 	 * @param filePath
       
    36 	 *            filePath
       
    37 	 */
       
    38 	public Path(String filePath) {
       
    39 		this.filePath = filePath;
       
    40 	}
       
    41 
       
    42 	/**
       
    43 	 * Gets file path
       
    44 	 * 
       
    45 	 * @return the filePath
       
    46 	 */
       
    47 	public String getFilePath() {
       
    48 		return filePath;
       
    49 	}
       
    50 
       
    51 	/**
       
    52 	 * Sets file path
       
    53 	 * 
       
    54 	 * @param filePath
       
    55 	 *            the filePath to set
       
    56 	 */
       
    57 	public void setFilePath(String filePath) {
       
    58 		this.filePath = filePath;
       
    59 	}
       
    60 }