Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f11aeebc706aeefd0150e22f4b692a27db3048a8 (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
/*******************************************************************************
 * Copyright (c) 2013 Stefan Seelmann 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:
 *     Stefan Seelmann - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.wikitext.markdown.core;

/**
 * Bean that holds information about reference-style link definitions.
 * 
 * @author Stefan Seelmann
 */
public class LinkDefinition {

	private final String id;

	private final String url;

	private final String title;

	private final int offset;

	private final int length;

	public LinkDefinition(String id, String url, String title, int offset, int length) {
		this.id = id;
		this.url = url;
		this.title = title;
		this.offset = offset;
		this.length = length;
	}

	public String getId() {
		return id;
	}

	public String getUrl() {
		return url;
	}

	public String getTitle() {
		return title;
	}

	public int getOffset() {
		return offset;
	}

	public int getLength() {
		return length;
	}

}

Back to the top