Subversion Repositories XServices

Rev

Rev 12 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12 Rev 54
Line 77... Line 77...
77
        this.returnCode = returnCode;
77
        this.returnCode = returnCode;
78
        this.stdOut = stdOut;
78
        this.stdOut = stdOut;
79
        this.stdErr = stdErr;
79
        this.stdErr = stdErr;
80
        this.property = props;
80
        this.property = props;
81
    }
81
    }
-
 
82
    
-
 
83
    public String getProperty(String key) {
-
 
84
    	for(AntProperty prop : this.property) {
-
 
85
    		if(prop.equals(key)) return prop.value;
-
 
86
    	}
-
 
87
    	return null;
-
 
88
    }
82
}
89
}