Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 72 → Rev 73

/xservices/trunk/src/java/net/brutex/xservices/types/ReturnCode.java
80,12 → 80,19
this.property = props;
}
/**
* @param key
* @return
*/
public String getProperty(String key) {
for(AntProperty prop : this.property) {
if(prop.equals(key)) return prop.value;
if(key.equals(prop.name)) return prop.value;
}
return null;
}
/**
* @return
*/
public String getStdOut() { return this.stdOut; }
}