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 { public class MIThreadExitEvent extends MIEvent {
int tid; int tid;
public MIThreadExitEvent(int id) { public MIThreadExitEvent(int id) {
tid = id; tid = id;
} }
public int getId() { public int getId() {
return tid; return tid;
} }
} }

View file

@ -13,19 +13,19 @@ package org.eclipse.cdt.debug.mi.core.event;
*/ */
public class MIVarChangedEvent extends MIChangedEvent { public class MIVarChangedEvent extends MIChangedEvent {
String varName; String varName;
boolean inScope; boolean inScope;
public MIVarChangedEvent(String var, boolean scope) { public MIVarChangedEvent(String var, boolean scope) {
varName = var; varName = var;
inScope = scope; inScope = scope;
} }
public String getVarName() { public String getVarName() {
return varName; return varName;
} }
public boolean isInScope() { public boolean isInScope() {
return inScope; return inScope;
} }
} }