mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
put isWriteWatchpoint().
This commit is contained in:
parent
955a91d12e
commit
dcfe811aae
1 changed files with 10 additions and 0 deletions
|
@ -61,6 +61,7 @@ public class MIBreakPoint {
|
||||||
boolean isWpt;
|
boolean isWpt;
|
||||||
boolean isAWpt;
|
boolean isAWpt;
|
||||||
boolean isRWpt;
|
boolean isRWpt;
|
||||||
|
boolean isWWpt;
|
||||||
|
|
||||||
public MIBreakPoint(MITuple tuple) {
|
public MIBreakPoint(MITuple tuple) {
|
||||||
parse(tuple);
|
parse(tuple);
|
||||||
|
@ -108,6 +109,15 @@ public class MIBreakPoint {
|
||||||
isRWpt = r;
|
isRWpt = r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isWriteWatchpoint() {
|
||||||
|
return isWWpt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWriteWatchpoint(boolean w) {
|
||||||
|
isWpt = w;
|
||||||
|
isWWpt = w;
|
||||||
|
}
|
||||||
|
|
||||||
public String getDisposition() {
|
public String getDisposition() {
|
||||||
return disp;
|
return disp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue