Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0fee467220a5a4389712abe1e6dfb9b26765f64b (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
/*******************************************************************************
 * Copyright (c) 2001, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Jens Lukowski/Innoopract - initial renaming/restructuring
 *     
 *******************************************************************************/
package org.eclipse.wst.sse.core.internal.undo;

import org.eclipse.jface.text.IDocument;

public class UndoDocumentEvent {
	private IDocument fDocument;
	private int fLength;
	private int fOffset;
	private IDocumentSelectionMediator fRequester;

	public UndoDocumentEvent(IDocumentSelectionMediator requester, IDocument document, int offset, int length) {
		fRequester = requester;
		fDocument = document;
		fOffset = offset;
		fLength = length;
	}

	public IDocument getDocument() {
		return fDocument;
	}

	public int getLength() {
		return fLength;
	}

	public int getOffset() {
		return fOffset;
	}

	public IDocumentSelectionMediator getRequester() {
		return fRequester;
	}
}

Back to the top