A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / variable / ResourceContainerExpander.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 container type variable into the desired result format.
16  * <p>
17  * This class is not intended to be extended by clients.
18  * </p>
19  */
20 public class ResourceContainerExpander extends ResourceExpander {
21
22         /**
23          * Create an instance
24          */
25         public ResourceContainerExpander() {
26                 super();
27         }
28
29         /*
30          * (non-Javadoc) Method declared on ResourceExpander.
31          */
32         /* package */IResource expand(String varValue, ExpandVariableContext context) {
33                 IResource resource = super.expand(varValue, context);
34                 if (resource != null)
35                         return resource.getParent();
36                 else
37                         return null;
38         }
39 }