Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7a9b1771a30fc53d9871c3d6af1838686010b32d (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
/*******************************************************************************
 * Copyright (c) 2007, 2010 Wind River Systems, Inc. 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tm.internal.tcf.rse.processes;

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.rse.core.subsystems.IRemoteObjectIdentifier;
import org.eclipse.rse.core.subsystems.ISystemDragDropAdapter;
import org.eclipse.rse.ui.view.ISystemRemoteElementAdapter;
import org.eclipse.rse.ui.view.ISystemViewElementAdapter;
import org.eclipse.ui.IActionFilter;
import org.eclipse.ui.model.IWorkbenchAdapter;
import org.eclipse.ui.progress.IDeferredWorkbenchAdapter;
import org.eclipse.ui.views.properties.IPropertySource;

public class TCFSystemViewProcessAdapterFactory implements IAdapterFactory {

    private final TCFSystemViewRemoteProcessAdapter adapter =
        new TCFSystemViewRemoteProcessAdapter();

    @SuppressWarnings("rawtypes")
    public Object getAdapter(Object adaptableObject, Class adapterType) {
        assert adaptableObject instanceof TCFRemoteProcess;
        if (adapterType == IPropertySource.class) {
            ((ISystemViewElementAdapter)adapter).setPropertySourceInput(adaptableObject);
        }
        return adapter;
    }

    @SuppressWarnings("rawtypes")
    public Class[] getAdapterList() {
        return new Class[] {
            ISystemViewElementAdapter.class,
            ISystemDragDropAdapter.class,
            ISystemRemoteElementAdapter.class,
            IPropertySource.class,
            IWorkbenchAdapter.class,
            IActionFilter.class,
            IDeferredWorkbenchAdapter.class,
            IRemoteObjectIdentifier.class,
        };
    }
}

Back to the top