Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 73 → Rev 72

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