Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 53 → Rev 54

/xservices/trunk/src/java/net/brutex/xservices/types/ReturnCode.java
79,4 → 79,11
this.stdErr = stdErr;
this.property = props;
}
public String getProperty(String key) {
for(AntProperty prop : this.property) {
if(prop.equals(key)) return prop.value;
}
return null;
}
}