sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/ui/ActiveSubtests.java
changeset 1 1050670c6980
child 6 f65f740e69f9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/ui/ActiveSubtests.java	Thu Feb 11 15:22:14 2010 +0200
@@ -0,0 +1,80 @@
+/*
+ * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+ * All rights reserved.
+ * This component and the accompanying materials are made available
+ * under the terms of "Eclipse Public License v1.0"
+ * which accompanies this distribution, and is available
+ * at the URL "http://www.eclipse.org/legal/epl-v10.html".
+ *
+ * Initial Contributors:
+ * Nokia Corporation - initial contribution.
+ *
+ * Contributors:
+ *
+ * Description:  Definitions for the class ActiveSubtests
+ *
+ */
+
+package com.nokia.s60tools.analyzetool.ui;
+
+/**
+ * Holds information of one active subtest.
+ *
+ * @author kihe
+ *
+ */
+public class ActiveSubtests {
+
+	/** Active subtest name. */
+	private final String name;
+
+	/** Subtest target name. */
+	private final String targetName;
+
+	/** Subtest process id. */
+	private final int processID;
+
+	/**
+	 * Constructor.
+	 *
+	 * @param subTestName
+	 *            Subtest name
+	 * @param subTestTargetName
+	 *            Subtest target name
+	 * @param newProcessID
+	 *            Subtest process id
+	 */
+	public ActiveSubtests(final String subTestName, final String subTestTargetName,
+			final int newProcessID) {
+		name = subTestName;
+		targetName = subTestTargetName;
+		processID = newProcessID;
+	}
+
+	/**
+	 * Gets active subtest name.
+	 *
+	 * @return Subtest name
+	 */
+	public final String getName() {
+		return name;
+	}
+
+	/**
+	 * Gets active subtest process id.
+	 *
+	 * @return Process id
+	 */
+	public final String getProcessID() {
+		return Integer.toString(processID ,16);
+	}
+
+	/**
+	 * Gets active subtest target name.
+	 *
+	 * @return Target name
+	 */
+	public final String getTargetName() {
+		return targetName;
+	}
+}