]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/JavaProjectAdapterFactory.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / JavaProjectAdapterFactory.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2011 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11
12 package org.eclipse.jdt.internal.ui;
13
14
15 import org.eclipse.core.runtime.IAdapterFactory;
16
17 import org.eclipse.core.resources.IProject;
18
19 import org.eclipse.jdt.core.IJavaProject;
20
21 /**
22  * An adapter factory for IJavaProjects.
23  */
24 public class JavaProjectAdapterFactory implements IAdapterFactory {
25
26         private static Class<?>[] PROPERTIES= new Class[] {
27                 IProject.class,
28         };
29
30         public Class[] getAdapterList() {
31                 return PROPERTIES;
32         }
33
34         public Object getAdapter(Object element, Class key) {
35                 if (IProject.class.equals(key)) {
36                         IJavaProject javaProject= (IJavaProject)element;
37                         return javaProject.getProject();
38                 }
39                 return null;
40         }
41 }