5bd3b4799bdd1495b6a34f8771a90db56313646c
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / externaltools / variable / LocalhostExpander.java
1 package net.sourceforge.phpdt.externaltools.variable;
2
3 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
4
5 import org.eclipse.jface.preference.IPreferenceStore;
6
7 /**
8  * Expands a variable into the predefined localhost.
9  * <p>
10  * This class is not intended to be extended by clients.
11  * </p>
12  */
13 public class LocalhostExpander implements IVariableTextExpander {
14
15   public String getText(String varTag, String varValue, ExpandVariableContext context) {
16     IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore(); 
17     return store.getString(PHPeclipsePlugin.PHP_LOCALHOST_PREF);
18   }
19
20 }