1 | protected Disposable disposable = new Disposable();↵ | | 1 | protected Disposable disposable = new Disposable();↵
|
|
2 | /**↵ | | 2 | /**↵
|
3 | * This keeps track of all the supported types checked by {@link #isFactoryForType isFactoryForType}.↵ | | 3 | * This keeps track of all the supported types checked by {@link #isFactoryForType isFactoryForType}.↵
|
4 | */↵ | | 4 | */↵
|
5 | protected Collection<Object> supportedTypes = new ArrayList<Object>();↵ | | 5 | protected Collection<Object> supportedTypes = new ArrayList<Object>();↵
|
|
6 | /**↵ | | 6 | /**↵
|
7 | * This constructs an instance.↵ | | 7 | * This constructs an instance from a domain notifier.↵
|
8 | */↵ | | 8 | */↵
|
9 | public TreeItemProviderAdapterFactory()↵ | | 9 | public MappingItemProviderAdapterFactory()↵
|
10 | {↵ | | 10 | {↵
|
11 | supportedTypes.add(IStructuredItemContentProvider.class);↵ | | 11 | supportedTypes.add(IStructuredItemContentProvider.class);↵
|
12 | supportedTypes.add(ITreeItemContentProvider.class);↵ | | 12 | supportedTypes.add(ITreeItemContentProvider.class);↵
|
13 | supportedTypes.add(IItemPropertySource.class);↵ | | 13 | supportedTypes.add(IItemPropertySource.class);↵
|
14 | supportedTypes.add(IEditingDomainItemProvider.class);↵ | | 14 | supportedTypes.add(IEditingDomainItemProvider.class);↵
|
15 | supportedTypes.add(IItemLabelProvider.class);↵ | | 15 | supportedTypes.add(IItemLabelProvider.class);↵
|
16 | supportedTypes.add(ITableItemLabelProvider.class); | | 16 | supportedTypes.add(ITableItemLabelProvider.class);
|