Subversion Repositories XServices

Rev

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

Rev 70 Rev 73
Line 78... Line 78...
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
    }
Line -... Line 82...
-
 
82
    
-
 
83
    /**
-
 
84
     * @param key
-
 
85
     * @return
82
    
86
     */
83
    public String getProperty(String key) {
87
    public String getProperty(String key) {
84
    	for(AntProperty prop : this.property) {
88
    	for(AntProperty prop : this.property) {
85
    		if(prop.equals(key)) return prop.value;
89
    		if(key.equals(prop.name)) return prop.value;
86
    	}
90
    	}
87
    	return null;
91
    	return null;
Line -... Line 92...
-
 
92
    }
-
 
93
    
-
 
94
    /**
88
    }
95
     * @return
89
    
96
     */