Start the debugger through setting the url with "?DBGSESSID=1@clienthost:10001" in...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / externaltools / variable / BuildTypeExpander.java
1 package net.sourceforge.phpdt.externaltools.variable;
2
3 public class BuildTypeExpander implements IVariableTextExpander {
4
5         public String getText(String varTag, String varValue, ExpandVariableContext context) {
6                 return context.getBuildType();
7         }
8
9 }