Revision 1635
tmp/org.txm.core/src/java/org/txm/core/results/TXMResult.java (revision 1635) | ||
---|---|---|
221 | 221 |
*/ |
222 | 222 |
public TXMResult(String parametersNodePath, TXMResult parent) { |
223 | 223 |
if (parent == this) { |
224 |
throw new IllegalArgumentException("A result can not be parent of itself."); //$NON-NLS-1$ |
|
224 |
throw new IllegalArgumentException("A result can not be the parent of itself."); //$NON-NLS-1$
|
|
225 | 225 |
} |
226 | 226 |
if (parent != null) { |
227 | 227 |
parent.addChild(this); |
... | ... | |
232 | 232 |
parametersNodePath = this.getProject().getParametersNodeRootPath(); |
233 | 233 |
} |
234 | 234 |
else { |
235 |
parametersNodePath = ""; |
|
235 |
parametersNodePath = ""; //$NON-NLS-1$;
|
|
236 | 236 |
} |
237 | 237 |
|
238 | 238 |
// no parametersNodePath -> new result |
Also available in: Unified diff