Revision 1636
tmp/org.txm.core/src/java/org/txm/core/results/TXMResult.java (revision 1636) | ||
---|---|---|
340 | 340 |
public void setLocked(boolean state) { |
341 | 341 |
this.locked = state; |
342 | 342 |
|
343 |
if (locked && this.parent != null) { |
|
343 |
if (this.locked && this.parent != null) {
|
|
344 | 344 |
this.parent.setLocked(true); |
345 | 345 |
} |
346 |
if (!locked) { |
|
346 |
if (!this.locked) {
|
|
347 | 347 |
for (TXMResult child : getChildren()) { |
348 | 348 |
child.setUserPersistable(false); |
349 | 349 |
} |
tmp/org.txm.utils/src/org/txm/utils/logger/Log.java (revision 1636) | ||
---|---|---|
168 | 168 |
+ ": " + t.getMethodName() + ", l." //$NON-NLS-1$ //$NON-NLS-2$ |
169 | 169 |
+ t.getLineNumber() + " -> " + e.toString()); //$NON-NLS-1$ |
170 | 170 |
|
171 |
if ("true".equals(log_stacktrace_boolean)) {
|
|
171 |
if (log_stacktrace_boolean) {
|
|
172 | 172 |
message.append(UtilsCoreMessages.Log_8); |
173 | 173 |
for (StackTraceElement se : e.getStackTrace()) |
174 | 174 |
message.append("\t" + se.getFileName() + "\t" + se.getMethodName() + "\tl." + se.getLineNumber() + "\n"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ |
Also available in: Unified diff