Skip to main content
summaryrefslogtreecommitdiffstats
blob: 554f44f257bb1c1f79f3165159667f4f2d1b9e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * (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;
	}

}

Back to the top