sysperfana/memspyext/com.nokia.s60tools.swmtanalyser/src/com/nokia/s60tools/swmtanalyser/data/WindowGroups.java
changeset 7 8e12a575a9b5
equal deleted inserted replaced
6:f65f740e69f9 7:8e12a575a9b5
       
     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.s60tools.swmtanalyser.data;
       
    18 
       
    19 /**
       
    20  * 
       
    21  * Data structure to hold the window group events.
       
    22  *
       
    23  */
       
    24 public class WindowGroups {
       
    25 
       
    26 	private String name;
       
    27 	private int id;
       
    28 	private int event;
       
    29 	private int status;
       
    30 	public int getEvent() {
       
    31 		return event;
       
    32 	}
       
    33 	public void setEvent(int event) {
       
    34 		this.event = event;
       
    35 	}
       
    36 	public int getId() {
       
    37 		return id;
       
    38 	}
       
    39 	public void setId(int id) {
       
    40 		this.id = id;
       
    41 	}
       
    42 	public String getName() {
       
    43 		return name;
       
    44 	}
       
    45 	public void setName(String name) {
       
    46 		this.name = name;
       
    47 	}
       
    48 	public int getStatus() {
       
    49 		return status;
       
    50 	}
       
    51 	public void setStatus(int status) {
       
    52 		this.status = status;
       
    53 	}
       
    54 	
       
    55 	
       
    56 }