Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2d235d6d132e7ea80ac644ca759072365f49ec22 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation and others.
 * 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 - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.tests.viewers.interactive;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.jface.viewers.IContentProvider;
import org.eclipse.jface.viewers.ILazyContentProvider;
import org.eclipse.jface.viewers.Viewer;

/**
 * The LazyVirtualTableView is the VirtualTableView with
 * lazy content.
 */
public class LazyVirtualTableView extends VirtualTableView {

	private List<String> elements;

	/**
	 * Create a new instance of the receiver.
	 */
	public LazyVirtualTableView() {
		super();
		initElements();
	}

	/**
	 *
	 */
	private void initElements() {
		elements = new ArrayList<String>();
		for (int i = 0; i < itemCount; i++) {
			elements.add("Element " + String.valueOf(i));
		}
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.tests.viewers.interactive.VirtualTableView#getContentProvider()
	 */
	protected IContentProvider<Object> getContentProvider() {
		return new ILazyContentProvider<Object>() {

			/* (non-Javadoc)
			 * @see org.eclipse.jface.viewers.ILazyContentProvider#updateElements(int, int)
			 */
			public void updateElement(int index) {
		        viewer.replace(elements.get(index), index);
			}
			/* (non-Javadoc)
			 * @see org.eclipse.jface.viewers.IContentProvider#dispose()
			 */
			public void dispose() {
				//Do Nothing
			}

			/* (non-Javadoc)
			 * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
			 */
			public void inputChanged(Viewer<Object> viewer, Object oldInput, Object newInput) {
				// Do nothing.
			}
		};
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.tests.viewers.interactive.VirtualTableView#doRemove(java.lang.Object[])
	 */
	protected void doRemove(String[] selection, int[] selectionIndices) {
		for (int i = 0; i < selectionIndices.length; i++) {
			int index = selectionIndices[i];
			elements.remove(index);
		}
		super.doRemove(selection, selectionIndices);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.jface.tests.viewers.interactive.VirtualTableView#resetInput()
	 */
	protected void resetInput() {
		viewer.setItemCount(itemCount);
		super.resetInput();
	}
}

Back to the top