Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: cb548c0e019e7ea5acfab770800cea4aa4a80145 (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
/*******************************************************************************
 * Copyright (c) 2005, 2006 BEA Systems 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:
 *     BEA Systems - initial implementation
 *     
 *******************************************************************************/

package org.eclipse.jst.jsp.core.jspel;

import org.eclipse.jface.text.Position;

public class ELProblem {
	private Position fPos;
	private String fMessage;
	
	public ELProblem(Position pos, String message)	{
		fPos = pos;
		fMessage = message;
	}
	
	public String getMessage() {
		return fMessage;
	}
	

	public Position getPosition() {
		return fPos;
	}
}

Back to the top