306d459b927c8947a8ccccb77876568ce824274e
[phpeclipse.git] /
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 }