Created a separated 'externaltools' plugin: initial check-in
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / variable / ResourceProjectExpander.java
1 package net.sourceforge.phpdt.externaltools.variable;
2
3 /**********************************************************************
4 Copyright (c) 2002 IBM Corp. and others. All rights reserved.
5 This file is made available under the terms of the Common Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/cpl-v10.html
8  
9 Contributors:
10 **********************************************************************/
11
12 import org.eclipse.core.resources.IResource;
13
14 /**
15  * Expands a resource's project type variable into the desired
16  * result format.
17  * <p>
18  * This class is not intended to be extended by clients.
19  * </p>
20  */
21 public class ResourceProjectExpander extends ResourceExpander {
22
23         /**
24          * Create an instance
25          */
26         public ResourceProjectExpander() {
27                 super();
28         }
29
30         /* (non-Javadoc)
31          * Method declared on ResourceExpander.
32          */
33         /*package*/ IResource expandUsingContext(ExpandVariableContext context) {
34                 return context.getProject();
35         }
36         
37         /* (non-Javadoc)
38          * Method declared on ResourceExpander.
39          */
40         /*package*/ IResource expandToMember(String varValue) {
41                 IResource member = super.expandToMember(varValue);
42                 if (member != null)
43                         return member.getProject();
44                 else
45                         return null;
46         }
47 }