KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > JavaProjectAdapterFactory


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.resources.IProject;
16 import org.eclipse.core.runtime.IAdapterFactory;
17 import org.eclipse.jdt.core.IJavaProject;
18
19 /**
20  * An adapter factory for IJavaProjects.
21  */

22 public class JavaProjectAdapterFactory implements IAdapterFactory {
23     
24     private static Class JavaDoc[] PROPERTIES= new Class JavaDoc[] {
25         IProject.class,
26     };
27     
28     public Class JavaDoc[] getAdapterList() {
29         return PROPERTIES;
30     }
31     
32     public Object JavaDoc getAdapter(Object JavaDoc element, Class JavaDoc key) {
33         if (IProject.class.equals(key)) {
34             IJavaProject javaProject= (IJavaProject)element;
35             return javaProject.getProject();
36         }
37         return null;
38     }
39 }
40
Popular Tags