sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/ui/ResourceVisitor.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/ResourceVisitor.java	Thu Feb 11 15:22:14 2010 +0200
@@ -0,0 +1,73 @@
+/*
+ * 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 ResourceVisitor
+ *
+ */
+
+package com.nokia.s60tools.analyzetool.ui;
+
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.IResourceVisitor;
+
+import com.nokia.s60tools.analyzetool.internal.ui.graph.AnalyzeToolGraph;
+import com.nokia.s60tools.analyzetool.ui.statistic.StatisticView;
+
+/**
+ * Class to visit resources in the project.
+ *
+ * @author araj modified kihe
+ *
+ */
+public class ResourceVisitor implements IResourceVisitor {
+
+	/** Parent class reference. */
+	private final Object arg0;
+
+	/**
+	 * Constructor.
+	 *
+	 * @param parentClass Parent class reference
+	 */
+	public ResourceVisitor(final Object parentClass) {
+		this.arg0 = parentClass;
+	}
+
+	/**
+	 * Visit every resource of project.
+	 *
+	 * @see org.eclipse.core.resources.IResourceVisitor#visit(org.eclipse.core.resources.IResource)
+	 *
+	 * @param resource
+	 *            One resource of the project
+	 */
+	public boolean visit(IResource resource) {
+
+		// if visit request came from main view
+		if (arg0 instanceof MainView) {
+			MainView mainView = (MainView) arg0;
+			mainView.loadFileInfo(resource);
+		}
+		else if( arg0 instanceof StatisticView )
+		{
+			StatisticView stats = (StatisticView)arg0;
+			stats.loadFileInfo(resource);
+		}
+		else if(arg0 instanceof AnalyzeToolGraph) {
+			AnalyzeToolGraph chart = (AnalyzeToolGraph)arg0;
+			chart.loadFileInfo(resource);
+		}
+		return true;
+	}
+
+}