Skip to main content
summaryrefslogtreecommitdiffstats
blob: 48baf4e227b64eff879e846a72d6d19e88341ce1 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
 * Copyright (c) 2004, 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
 *******************************************************************************/
package org.eclipse.wst.html.core.internal.validate;



import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;

public class Segment {

	private int offset = 0;
	private int length = 0;

	/**
	 */
	public Segment(int offset, int length) {
		super();
		this.offset = offset;
		this.length = length;
	}

	public Segment(IStructuredDocumentRegion region) {
		super();
		this.offset = region.getStartOffset();
		this.length = region.getLength();
	}

	/**
	 * NOTE: 'start' and 'end' must be the start and end of the contiguous regions.
	 * Otherwise, this class cannot work correctly.
	 */
	public Segment(IStructuredDocumentRegion start, IStructuredDocumentRegion end) {
		super();
		this.offset = start.getStartOffset();
		int endOffset = (end == null) ? start.getEndOffset() : end.getEndOffset();
		this.length = endOffset - this.offset;
	}

	//public Segment(ITextRegion start, ITextRegion end) {
	//	super();
	//	this.offset = start.getStartOffset();
	//	int endOffset = (end == null) ? start.getEndOffset() : end.getEndOffset();
	//	this.length = endOffset - this.offset;
	//}
	/**
	 */
	public int getLength() {
		return this.length;
	}

	/**
	 */
	public int getOffset() {
		return this.offset;
	}
}

Back to the top