Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9ed699d2f64a5e6aa9d1849653b3b6b4ed475c5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

package org.eclipse.linuxtools.systemtap.ui.graphingapi.nonui.tests;

import java.util.ArrayList;

import org.eclipse.linuxtools.systemtap.ui.graphingapi.nonui.datasets.row.RowDataSet;
import org.eclipse.linuxtools.systemtap.ui.graphingapi.nonui.datasets.row.RowEntry;


public final class MockDataSet {
	public static RowDataSet buildDataSet(int rows, int cols) {
		String[] titles = new String[cols];
		int i;
		for(i=0; i<cols; i++)
			titles[i] = ""+ i;
		
		RowDataSet data = new RowDataSet(titles);
		RowEntry entry;
		
		int j;
		for(i=0; i<rows; i++) {
			Object[] d = new Object[cols];
			for(j=0; j< cols; j++)
				d[j] = new Double(i*cols + j);
			entry = new RowEntry();
			entry.putRow(0, d);
			data.append(entry);
		}
		return data;
	}
	
	public static ArrayList[] buildArray(int width, int height, int wrap) {
		ArrayList[] list = new ArrayList[width];
		
		for(int i=0; i<width; i++) {
			list[i] = new ArrayList();
			for(int j=0; j<height; j++) {
				list[i].add("" + ((j+i) % wrap));
			}
		}
		return list;
	}
	
	public static Integer[] buildIntegerArray(int[] arr) {
		Integer[] ints = new Integer[arr.length];
		for(int i=0; i<arr.length; i++)
			ints[i] = new Integer(arr[i]);
		return ints;
	}
	
	public static Double[] buildDoubleArray(double[] arr) {
		Double[] doubles = new Double[arr.length];
		for(int i=0; i<arr.length; i++)
			doubles[i] = new Double(arr[i]);
		return doubles;
	}
}

Back to the top