blob: 554f44f257bb1c1f79f3165159667f4f2d1b9e19 [file] [log] [blame]
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*/
package org.eclipse.cdt.debug.mi.core.output;
/**
* GDB/MI shared information
*/
public class MIShared {
long from;
long to;
boolean isread;
String name;
public MIShared (long start, long end, boolean read, String location) {
from = start;
to = end;
isread = read;
name = location;
}
public long getFrom() {
return from;
}
public long getTo() {
return to;
}
public boolean isRead() {
return isread;
}
public String getName() {
return name;
}
public void setSymbolsRead(boolean read) {
isread = read;
}
}