public String getValue()

in src/main/org/apache/ant/dotnet/compile/DotnetDefine.java [72:81]


    public String getValue(Task owner) throws BuildException {
        if (name == null) {
            throw new BuildException("No name provided for the define element",
                owner.getLocation());
        }
        if (!isSet(owner)) {
            return null;
        }
        return name;
    }