1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Indentation

This commit is contained in:
Alain Magloire 2002-10-19 19:21:14 +00:00
parent e0a1aac99a
commit 7c45b6aa42
2 changed files with 19 additions and 19 deletions

View file

@ -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;
}
}

View file

@ -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;
}
}