public boolean isSet()

in src/main/org/apache/ant/dotnet/compile/DotnetDefine.java [89:97]


    public boolean isSet(Task owner) {
        Project p = owner.getProject();
        if (ifCond != null && p.getProperty(ifCond) == null) {
            return false;
        } else if (unlessCond != null && p.getProperty(unlessCond) != null) {
            return false;
        }
        return true;
    }