mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Indentation
This commit is contained in:
parent
e0a1aac99a
commit
7c45b6aa42
2 changed files with 19 additions and 19 deletions
|
@ -12,13 +12,13 @@ package org.eclipse.cdt.debug.mi.core.event;
|
|||
*/
|
||||
public class MIThreadExitEvent extends MIEvent {
|
||||
|
||||
int tid;
|
||||
int tid;
|
||||
|
||||
public MIThreadExitEvent(int id) {
|
||||
tid = id;
|
||||
}
|
||||
public MIThreadExitEvent(int id) {
|
||||
tid = id;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return tid;
|
||||
}
|
||||
public int getId() {
|
||||
return tid;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,19 +13,19 @@ package org.eclipse.cdt.debug.mi.core.event;
|
|||
*/
|
||||
public class MIVarChangedEvent extends MIChangedEvent {
|
||||
|
||||
String varName;
|
||||
boolean inScope;
|
||||
String varName;
|
||||
boolean inScope;
|
||||
|
||||
public MIVarChangedEvent(String var, boolean scope) {
|
||||
varName = var;
|
||||
inScope = scope;
|
||||
}
|
||||
public MIVarChangedEvent(String var, boolean scope) {
|
||||
varName = var;
|
||||
inScope = scope;
|
||||
}
|
||||
|
||||
public String getVarName() {
|
||||
return varName;
|
||||
}
|
||||
public String getVarName() {
|
||||
return varName;
|
||||
}
|
||||
|
||||
public boolean isInScope() {
|
||||
return inScope;
|
||||
}
|
||||
public boolean isInScope() {
|
||||
return inScope;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue