imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/UITarget.java
changeset 0 61163b28edca
equal deleted inserted replaced
-1:000000000000 0:61163b28edca
       
     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 
       
    18 
       
    19 package com.nokia.s60tools.imaker;
       
    20 
       
    21 /**
       
    22  * This class is a simple container class for target
       
    23  * information
       
    24  * 
       
    25  * @version 0.2
       
    26  */
       
    27 public class UITarget {
       
    28 	/** Private instance variables */
       
    29 	private String name = null;
       
    30 	private String description = null;
       
    31 	private String steps = null;
       
    32 	
       
    33 	/**
       
    34 	 * Default constructor
       
    35 	 * 
       
    36 	 * @param name Name of the target
       
    37 	 * @param description Description of the target
       
    38 	 */
       
    39 	public UITarget(String name, String description) {
       
    40 		this.name = name;
       
    41 		this.description = description;
       
    42 	}
       
    43 	
       
    44 	/**
       
    45 	 * Get method for name
       
    46 	 * 
       
    47 	 * @return Name of the target
       
    48 	 */
       
    49 	public String getName() {
       
    50 		return name;
       
    51 	}
       
    52 	
       
    53 	/**
       
    54 	 * Get method for description
       
    55 	 * 
       
    56 	 * @return Description of the target
       
    57 	 */
       
    58 	public String getDescription() {
       
    59 		return description;
       
    60 	}
       
    61 
       
    62 	public void setSteps(String steps) {
       
    63 		this.steps = steps;
       
    64 	}
       
    65 
       
    66 	public String getSteps() {
       
    67 		return steps;
       
    68 	}
       
    69 	
       
    70 }