comparison org.eclipse.jface/src/org/eclipse/jface/viewers/ArrayContentProvider.d @ 103:6373fd739945

jface/viewers/ArrayContentProvider to Object and do an alias for general types with ArrayContentProviderT
author Frank Benoit <benoit@tionex.de>
date Sat, 02 May 2009 11:27:08 +0200
parents bc29606a740c
children
comparison
equal deleted inserted replaced
102:85aaba05e058 103:6373fd739945
28 * </p> 28 * </p>
29 * 29 *
30 * @since 2.1 30 * @since 2.1
31 * @noextend This class is not intended to be subclassed by clients. 31 * @noextend This class is not intended to be subclassed by clients.
32 */ 32 */
33 public class ArrayContentProvider(T) : IStructuredContentProvider { 33 public class ArrayContentProviderT(T) : IStructuredContentProvider {
34 34
35 /** 35 /**
36 * Returns the elements in the input, which must be either an array or a 36 * Returns the elements in the input, which must be either an array or a
37 * <code>Collection</code>. 37 * <code>Collection</code>.
38 */ 38 */
58 */ 58 */
59 public void dispose() { 59 public void dispose() {
60 // do nothing. 60 // do nothing.
61 } 61 }
62 } 62 }
63 alias ArrayContentProviderT!(Object) ArrayContentProvider;
64